-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible unintended code typo (&
instead of |
)
#56
Comments
Duh! |
The sad thing is that tests pass either way, so it means that part is not tested ... somehow |
Ah this break just the reporting, that is why, as the NTLMSSP flags are what are used to do the negotiation ... |
When SEAL is negotiated we are supposed to se INTEG and CONF flags, but instead of using a | to set both a & was used ending up setting nothing. Fixes gssapi#56 Signed-off-by: Simo Sorce <[email protected]>
Thanks! It didn't actually break any scenario I was testing. I found it when looking at the |
As soon as tests pass I'll merge, thanks for spotting this, really appreciated. |
When SEAL is negotiated we are supposed to se INTEG and CONF flags, but instead of using a | to set both a & was used ending up setting nothing. Fixes #56 Signed-off-by: Simo Sorce <[email protected]>
gss-ntlmssp/src/gss_sec_ctx.c
Line 401 in 9b6493b
The text was updated successfully, but these errors were encountered: