From: Wilfried Goesgens Date: Thu, 1 Mar 2012 23:20:08 +0000 (+0100) Subject: SMTPQ: don't multiplay the value for displaying it. X-Git-Tag: v8.11~153 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=dce0a5f39c40ebf63f06c4ad6549e09bce672f2d SMTPQ: don't multiplay the value for displaying it. --- diff --git a/webcit/smtpqueue.c b/webcit/smtpqueue.c index 45389ee55..b03c4e0dc 100644 --- a/webcit/smtpqueue.c +++ b/webcit/smtpqueue.c @@ -524,9 +524,7 @@ void QItem_Handle_Recipient(OneQueItem *Item, StrBuf *Line, const char **Pos) void QItem_Handle_retry(OneQueItem *Item, StrBuf *Line, const char **Pos) { - Item->Retry = - StrBufExtractNext_int(Line, Pos, '|'); - Item->Retry *= 2; + Item->Retry = StrBufExtractNext_int(Line, Pos, '|'); }