]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
imap: Removed accidentally commited debug code.
authorTimo Sirainen <tss@iki.fi>
Tue, 2 Nov 2010 18:25:53 +0000 (18:25 +0000)
committerTimo Sirainen <tss@iki.fi>
Tue, 2 Nov 2010 18:25:53 +0000 (18:25 +0000)
src/imap/imap-client.c

index bc8edb8782b3af30797e1827362bb2601006f2bf..95cd8e9cb30276eae330a77cce4a4519504d1fbf 100644 (file)
@@ -424,8 +424,6 @@ client_command_find_with_flags(struct client_command_context *new_cmd,
 
        cmd = new_cmd->client->command_queue;
        for (; cmd != NULL; cmd = cmd->next) {
-               i_warning("cmd=%s state=%d<=%d flags=%x & %x",
-                         cmd->name, cmd->state, max_state, cmd->cmd_flags, flags);
                if (cmd->state <= max_state &&
                    cmd != new_cmd && (cmd->cmd_flags & flags) != 0)
                        return cmd;