changeset 10906:841af633f8d0 HEAD

auth: Compile fix for gssapi.
author Timo Sirainen <tss@iki.fi>
date Sun, 14 Mar 2010 03:47:34 +0200
parents cb26518a7e51
children 3f43b5c47a0e
files src/auth/mech-gssapi.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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) {