dovecot-2.2: auth: Fixed compiling GSSAPI after recent changes.

dovecot at dovecot.org dovecot at dovecot.org
Wed Jan 30 23:24:30 EET 2013


details:   http://hg.dovecot.org/dovecot-2.2/rev/9afe5c6c1c1f
changeset: 15692:9afe5c6c1c1f
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Jan 30 23:24:20 2013 +0200
description:
auth: Fixed compiling GSSAPI after recent changes.

diffstat:

 src/auth/mech-gssapi.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r d60aa734c72d -r 9afe5c6c1c1f src/auth/mech-gssapi.c
--- a/src/auth/mech-gssapi.c	Wed Jan 30 22:44:48 2013 +0200
+++ b/src/auth/mech-gssapi.c	Wed Jan 30 23:24:20 2013 +0200
@@ -408,7 +408,7 @@
 {
 	const char *value, *const *authorized_names, *const *tmp;
 
-	value = auth_stream_reply_find(request->extra_fields, "k5principals");
+	value = auth_fields_find(request->extra_fields, "k5principals");
 	if (value == NULL)
 		return FALSE;
 
@@ -639,7 +639,7 @@
 
 	/* Continue in callback once auth_request is populated with passdb
 	   information. */
-	request->passdb_success = TRUE; /* default to success */
+	auth_request->passdb_success = TRUE; /* default to success */
 	auth_request_lookup_credentials(&request->auth_request, "",
 					gssapi_credentials_callback);
 	return 0;


More information about the dovecot-cvs mailing list