[dovecot-cvs] dovecot/src/pop3-login client.c,1.19,1.20

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


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

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



Index: client.c
===================================================================
RCS file: /home/cvs/dovecot/src/pop3-login/client.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- a/client.c	17 May 2004 01:32:17 -0000	1.19
+++ b/client.c	24 May 2004 22:35:56 -0000	1.20
@@ -113,7 +113,7 @@
 static int client_command_execute(struct pop3_client *client, const char *cmd,
 				  const char *args)
 {
-	cmd = str_ucase(t_strdup_noconst(cmd));
+	cmd = t_str_ucase(cmd);
 	if (strcmp(cmd, "CAPA") == 0)
 		return cmd_capa(client, args);
 	if (strcmp(cmd, "USER") == 0)



More information about the dovecot-cvs mailing list