[dovecot-cvs] dovecot/src/login-common sasl-server.c, 1.5, 1.6 sasl-server.h, 1.3, 1.4

cras at dovecot.org cras at dovecot.org
Tue Oct 19 05:51:40 EEST 2004


Update of /var/lib/cvs/dovecot/src/login-common
In directory talvi:/tmp/cvs-serv12323/login-common

Modified Files:
	sasl-server.c sasl-server.h 
Log Message:
s/protocol/service/ in authentication



Index: sasl-server.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/login-common/sasl-server.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- sasl-server.c	18 Oct 2004 23:03:54 -0000	1.5
+++ sasl-server.c	19 Oct 2004 02:51:37 -0000	1.6
@@ -107,7 +107,7 @@
 }
 
 void sasl_server_auth_begin(struct client *client,
-			    const char *protocol, const char *mech_name,
+			    const char *service, const char *mech_name,
 			    const char *initial_resp_base64,
 			    sasl_server_callback_t *callback)
 {
@@ -136,7 +136,7 @@
 
 	memset(&info, 0, sizeof(info));
 	info.mech = mech->name;
-	info.protocol = protocol;
+	info.service = service;
 	info.flags = client_get_auth_flags(client);
 	info.local_ip = client->local_ip;
 	info.remote_ip = client->ip;

Index: sasl-server.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/login-common/sasl-server.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- sasl-server.h	18 Oct 2004 01:13:26 -0000	1.3
+++ sasl-server.h	19 Oct 2004 02:51:37 -0000	1.4
@@ -13,7 +13,7 @@
 				    const char *data, const char *const *args);
 
 void sasl_server_auth_begin(struct client *client,
-			    const char *protocol, const char *mech_name,
+			    const char *service, const char *mech_name,
 			    const char *initial_resp_base64,
 			    sasl_server_callback_t *callback);
 void sasl_server_auth_cancel(struct client *client, const char *reason);



More information about the dovecot-cvs mailing list