SMTPQ: don't multiplay the value for displaying it.
authorWilfried Goesgens <dothebart@citadel.org>
Thu, 1 Mar 2012 23:20:08 +0000 (00:20 +0100)
committerWilfried Goesgens <dothebart@citadel.org>
Thu, 1 Mar 2012 23:20:08 +0000 (00:20 +0100)
webcit/smtpqueue.c

index 45389ee5579389080991f844aa9251548bdb94db..b03c4e0dcdce4d18dfd2efe15f4aaf3e62a7378d 100644 (file)
@@ -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, '|');
 }