tom 2008/04/24 19:30:02 BST
Modified files:
exim-src/src expand.c
Log:
fix BATV prvs expiry calculation for one rollover case
Revision Changes Path
1.94 +1 -1 exim/exim-src/src/expand.c
Index: expand.c
===================================================================
RCS file: /home/cvs/exim/exim-src/src/expand.c,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- expand.c 12 Feb 2008 12:52:51 -0000 1.93
+++ expand.c 24 Apr 2008 18:30:02 -0000 1.94
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/exim-src/src/expand.c,v 1.93 2008/02/12 12:52:51 nm4 Exp $ */
+/* $Cambridge: exim/exim-src/src/expand.c,v 1.94 2008/04/24 18:30:02 tom Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -3818,7 +3818,7 @@
Adjust "inow" accordingly. */
if ( (iexpire < 7) && (inow >= 993) ) inow = 0;
- if (iexpire > inow)
+ if (iexpire >= inow)
{
prvscheck_result = US"1";
DEBUG(D_expand) debug_printf("prvscheck: success, $pvrs_result set to 1\n");