From: Timo Sirainen Date: Thu, 15 Oct 2009 00:50:06 +0000 (-0400) Subject: Compiler warning fix. X-Git-Tag: 2.0.alpha2~98 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=126d34fba744dab2578e96b22089a33953049f71;p=thirdparty%2Fdovecot%2Fcore.git Compiler warning fix. --HG-- branch : HEAD --- diff --git a/src/lib-lda/lmtp-client.c b/src/lib-lda/lmtp-client.c index c58549532a..305de0a510 100644 --- a/src/lib-lda/lmtp-client.c +++ b/src/lib-lda/lmtp-client.c @@ -146,7 +146,7 @@ lmtp_client_data_next(struct lmtp_client *client, const char *line) { struct lmtp_rcpt *rcpt; unsigned int i, count; - bool last; + bool last = TRUE; switch (client->protocol) { case LMTP_CLIENT_PROTOCOL_SMTP: @@ -159,7 +159,6 @@ lmtp_client_data_next(struct lmtp_client *client, const char *line) rcpt[i].context); } client->rcpt_next_data_idx = count; - last = TRUE; break; case LMTP_CLIENT_PROTOCOL_LMTP: rcpt = array_idx_modifiable(&client->recipients,