Skip to content

Commit

Permalink
lmtp: Fixed pipelining of commands after RCPT TO
Browse files Browse the repository at this point in the history
We should stop while waiting for anvil reply. Broken by ced943b.
  • Loading branch information
sirainen committed Jun 30, 2016
1 parent 45bdb33 commit 758df8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lmtp/commands.c
Expand Up @@ -746,7 +746,7 @@ int cmd_rcpt(struct client *client, const char *args)
rcpt_anvil_lookup_callback, rcpt);
/* stop processing further commands while anvil query is
pending */
return rcpt->anvil_query != NULL ? 0 : -1;
return rcpt->anvil_query == NULL ? 0 : -1;
}
}

Expand Down

0 comments on commit 758df8f

Please sign in to comment.