Skip to content

Commit

Permalink
imap-login: Add missing brace
Browse files Browse the repository at this point in the history
  • Loading branch information
cmouse authored and sirainen committed Sep 21, 2016
1 parent 24068f9 commit e26249c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/imap-login/imap-proxy.c
Expand Up @@ -380,7 +380,7 @@ int imap_proxy_parse_line(struct client *client, const char *line)
either STARTTLS or login */
client->proxy_state = IMAP_PROXY_STATE_ID;

if (client->proxy_nopipelining)
if (client->proxy_nopipelining) {
str = t_str_new(128);
if ((ret = proxy_write_starttls(imap_client, str)) < 0) {
return -1;
Expand Down

0 comments on commit e26249c

Please sign in to comment.