[dovecot-cvs] dovecot/src/auth auth-digest-md5.c,1.7,1.8

cras at procontrol.fi cras at procontrol.fi
Mon Dec 9 18:31:52 EET 2002


Update of /home/cvs/dovecot/src/auth
In directory danu:/tmp/cvs-serv21116/auth

Modified Files:
	auth-digest-md5.c 
Log Message:
Added missing comma between realm and nonce.



Index: auth-digest-md5.c
===================================================================
RCS file: /home/cvs/dovecot/src/auth/auth-digest-md5.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- auth-digest-md5.c	8 Dec 2002 05:23:07 -0000	1.7
+++ auth-digest-md5.c	9 Dec 2002 16:31:50 -0000	1.8
@@ -97,9 +97,8 @@
 
 	realms = t_string_new(128);
 	for (tmp = auth_realms; *tmp != NULL; tmp++) {
-		if (realms->len > 0)
-			t_string_append_c(realms, ',');
 		t_string_printfa(realms, "realm=\"%s\"", *tmp);
+		t_string_append_c(realms, ',');
 	}
 
 	return t_strconcat(realms->str,




More information about the dovecot-cvs mailing list