Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ai
sso
Commits
5c84497a
Commit
5c84497a
authored
Feb 17, 2018
by
ale
Browse files
Debug nonces on /sso_login ticket auth failure
parent
8f4c7d1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mod_sso/mod_sso.c
View file @
5c84497a
...
...
@@ -480,7 +480,8 @@ static int mod_sso_method_handler(request_rec *r) {
if
((
err
=
sso_validate
(
t
,
service
,
s_cfg
->
domain
,
unique_id
,
NULL
))
!=
SSO_OK
)
{
ap_log_error
(
APLOG_MARK
,
APLOG_WARNING
,
0
,
r
->
server
,
"sso: ticket validation error: %s"
,
sso_strerror
(
err
));
"sso: ticket validation error: %s (nonce=%s, t->nonce=%s)"
,
sso_strerror
(
err
),
unique_id
,
t
->
nonce
);
return
HTTP_BAD_REQUEST
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment