From: Timo Sirainen Date: Mon, 1 Jun 2009 01:32:17 +0000 (-0400) Subject: IMAP: UID commands didn't set cmd->name properly. X-Git-Tag: 2.0.alpha1~633 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d74c66b591ab09b4485417546ed22be7e438841b;p=thirdparty%2Fdovecot%2Fcore.git IMAP: UID commands didn't set cmd->name properly. Patch by Richard Platel. --HG-- branch : HEAD --- diff --git a/src/imap/cmd-uid.c b/src/imap/cmd-uid.c index 21f8346695..7c99f10651 100644 --- a/src/imap/cmd-uid.c +++ b/src/imap/cmd-uid.c @@ -20,6 +20,7 @@ bool cmd_uid(struct client_command_context *cmd) return TRUE; } + cmd->name = t_strconcat("UID ", cmd_name, NULL); cmd->cmd_flags = command->flags; cmd->func = command->func; cmd->uid = TRUE;