[dovecot-cvs] dovecot/src/pop3 main.c,1.35,1.36

cras at dovecot.org cras at dovecot.org
Sat Dec 31 00:13:45 EET 2005


Update of /var/lib/cvs/dovecot/src/pop3
In directory talvi:/tmp/cvs-serv6907/src/pop3

Modified Files:
	main.c 
Log Message:
Clarify that workaround lists are space separated. But allow commas as
well..



Index: main.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/pop3/main.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- main.c	6 Dec 2005 19:23:10 -0000	1.35
+++ main.c	30 Dec 2005 22:13:42 -0000	1.36
@@ -63,7 +63,7 @@
 	if (env == NULL)
 		return;
 
-	for (str = t_strsplit_spaces(env, " "); *str != NULL; str++) {
+	for (str = t_strsplit_spaces(env, " ,"); *str != NULL; str++) {
 		list = client_workaround_list;
 		for (; list->name != NULL; list++) {
 			if (strcasecmp(*str, list->name) == 0) {



More information about the dovecot-cvs mailing list