Skip to content

Commit 51dab6a

Browse files
committed
Rename newLogoutRequestId -> newLogoutRequestID
1 parent a3059d2 commit 51dab6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

logout_request.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func parseDate(raw string) (time.Time, error) {
4848
return t, nil
4949
}
5050

51-
func newLogoutRequestId() string {
51+
func newLogoutRequestID() string {
5252
const alphabet = "abcdef0123456789"
5353

5454
// generate 64 character string
@@ -66,7 +66,7 @@ func xmlLogoutRequest(ticket string) ([]byte, error) {
6666
l := &logoutRequest{
6767
Version: "2.0",
6868
IssueInstant: time.Now().UTC(),
69-
ID: newLogoutRequestId(),
69+
ID: newLogoutRequestID(),
7070
NameID: "@NOT_USED@",
7171
SessionIndex: ticket,
7272
}

0 commit comments

Comments
 (0)