X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Fretry.c;h=fd4cbc25641a2b41028b41d1ab04b56db335feb5;hb=b3d9ebf57a10a5f35783d2f9802f2201624c1a20;hp=0bb33a05348a7ec2c99f1905a7ead13497b99913;hpb=32dfdf8baa8ccf091a0d5d4d75e8627424898756;p=exim.git diff --git a/src/src/retry.c b/src/src/retry.c index 0bb33a053..fd4cbc256 100644 --- a/src/src/retry.c +++ b/src/src/retry.c @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2015 */ +/* Copyright (c) University of Cambridge 1995 - 2018 */ /* See the file NOTICE for conditions of use and distribution. */ /* Functions concerned with retrying unsuccessful deliveries. */ @@ -54,7 +54,7 @@ if (retry != NULL && retry->rules != NULL) last_rule = last_rule->next); DEBUG(D_retry) debug_printf(" received_time=%d diff=%d timeout=%d\n", - received_time.tv_sec, (int)(now - received_time.tv_sec), last_rule->timeout); + (int)received_time.tv_sec, (int)(now - received_time.tv_sec), last_rule->timeout); address_timeout = (now - received_time.tv_sec > last_rule->timeout); } else