[dovecot-cvs] dovecot/src/login-common client-common.c,1.2,1.3

cras at dovecot.org cras at dovecot.org
Fri Jul 22 14:19:02 EEST 2005


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

Modified Files:
	client-common.c 
Log Message:
We printed "SSL" to log for localhost connections. Use "secured" instead.



Index: client-common.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/login-common/client-common.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- client-common.c	14 May 2005 20:32:06 -0000	1.2
+++ client-common.c	22 Jul 2005 11:18:55 -0000	1.3
@@ -43,7 +43,8 @@
 	tab[7].value = my_pid;
 	tab[8].value = client->auth_mech_name == NULL ? NULL :
 		str_sanitize(client->auth_mech_name, MAX_MECH_NAME);
-	tab[9].value = client->tls ? "TLS" : client->secured ? "SSL" : NULL;
+	tab[9].value = client->tls ? "TLS" :
+		client->secured ? "secured" : NULL;
 
 	return tab;
 }



More information about the dovecot-cvs mailing list