dovecot-2.0: auth: Compile fix for gssapi.

dovecot at dovecot.org dovecot at dovecot.org
Sun Mar 14 03:47:36 EET 2010


details:   http://hg.dovecot.org/dovecot-2.0/rev/841af633f8d0
changeset: 10906:841af633f8d0
user:      Timo Sirainen <tss at iki.fi>
date:      Sun Mar 14 03:47:34 2010 +0200
description:
auth: Compile fix for gssapi.

diffstat:

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

diffs (24 lines):

diff -r cb26518a7e51 -r 841af633f8d0 src/auth/mech-gssapi.c
--- a/src/auth/mech-gssapi.c	Sun Mar 14 02:28:56 2010 +0200
+++ b/src/auth/mech-gssapi.c	Sun Mar 14 03:47:34 2010 +0200
@@ -99,9 +99,9 @@
 	} while (message_context != 0);
 }
 
-static void mech_gssapi_initialize(struct auth *auth)
+static void mech_gssapi_initialize(const struct auth_settings *set)
 {
-	const char *path = auth->set->krb5_keytab;
+	const char *path = set->krb5_keytab;
 
 	if (*path != '\0') {
 		/* environment may be used by Kerberos 5 library directly */
@@ -140,7 +140,7 @@
 
 	if (!gssapi_initialized) {
 		gssapi_initialized = TRUE;
-		mech_gssapi_initialize(request->auth);
+		mech_gssapi_initialize(request->set);
 	}
 
 	if (strcmp(request->set->gssapi_hostname, "$ALL") == 0) {


More information about the dovecot-cvs mailing list