This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU gsasl".
http://git.savannah.gnu.org/cgit/gsasl.git/commit/?id=dc773fa6eb38cc7c8a67e6fdaa70be429b632b14 The branch, master has been updated via dc773fa6eb38cc7c8a67e6fdaa70be429b632b14 (commit) from d4e608649a7a5190a735e314c1154f24dbbb8ac5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit dc773fa6eb38cc7c8a67e6fdaa70be429b632b14 Author: Simon Josefsson <[email protected]> Date: Thu Apr 29 10:21:59 2010 +0200 SCRAM server: Interop against clients that supports channel bindings. Reported by Marc Santamaria <[email protected]>. ----------------------------------------------------------------------- Summary of changes: lib/scram/server.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/scram/server.c b/lib/scram/server.c index 4926dea..79dd7c1 100644 --- a/lib/scram/server.c +++ b/lib/scram/server.c @@ -129,7 +129,7 @@ _gsasl_scram_sha1_server_step (Gsasl_session * sctx, return GSASL_MECHANISM_PARSE_ERROR; /* We don't support channel bindings. */ - if (state->cf.cbflag != 'n') + if (state->cf.cbflag != 'n' && state->cf.cbflag != 'y') return GSASL_AUTHENTICATION_ERROR; /* Check that username doesn't fail SASLprep. */ hooks/post-receive -- GNU gsasl _______________________________________________ Gsasl-commit mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gsasl-commit
