[dovecot-cvs] dovecot/src/lib var-expand.c,1.9,1.10

cras at dovecot.org cras at dovecot.org
Wed Apr 12 10:35:39 EEST 2006


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

Modified Files:
	var-expand.c 
Log Message:
%U modifier was actually lowercasing the string. Patch by Ben Winslow



Index: var-expand.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/var-expand.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- var-expand.c	13 Jan 2006 20:26:01 -0000	1.9
+++ var-expand.c	12 Apr 2006 07:35:37 -0000	1.10
@@ -26,7 +26,7 @@
 static const char *
 m_str_ucase(const char *str, struct var_expand_context *ctx __attr_unused__)
 {
-	return t_str_lcase(str);
+	return t_str_ucase(str);
 }
 
 static const char *



More information about the dovecot-cvs mailing list