[dovecot-cvs] dovecot/src/pop3 commands.c,1.15,1.16

cras at procontrol.fi cras at procontrol.fi
Tue May 25 01:35:58 EEST 2004


Update of /home/cvs/dovecot/src/pop3
In directory talvi:/tmp/cvs-serv15968/pop3

Modified Files:
	commands.c 
Log Message:
cleanup: str_*case(t_strdup_noconst(str)) -> t_str_*case(str)



Index: commands.c
===================================================================
RCS file: /home/cvs/dovecot/src/pop3/commands.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- a/commands.c	10 May 2004 19:00:36 -0000	1.15
+++ b/commands.c	24 May 2004 22:35:56 -0000	1.16
@@ -431,7 +431,7 @@
 			    const char *name, const char *args)
 {
 	/* keep the command uppercased */
-	name = str_ucase(t_strdup_noconst(name));
+	name = t_str_ucase(name);
 
 	while (*args == ' ') args++;
 



More information about the dovecot-cvs mailing list