Title: [opsview-base] [305] only skip files that are really older or newer then requested time window
Revision
305
Author
aburzynski
Date
2013-07-09 18:11:30 +0100 (Tue, 09 Jul 2013)

Log Message

only skip files that are really older or newer then requested time window

Modified Paths

Modified: trunk/patches/nfdump-file-list-prune.patch
===================================================================
--- trunk/patches/nfdump-file-list-prune.patch	2013-07-09 13:06:07 UTC (rev 304)
+++ trunk/patches/nfdump-file-list-prune.patch	2013-07-09 17:11:30 UTC (rev 305)
@@ -144,7 +144,7 @@
 +
 +		if(fileTime && *time_start && *time_end)
 +		{
-+			if((strcmp(fileTime+7, time_start) <= 0) || (strcmp(fileTime+7, time_end) >= 0))
++			if((strcmp(fileTime+7, time_start) < 0) || (strcmp(fileTime+7, time_end) > 0))
 +			{
 +				return;
 +			}

_______________________________________________
Opsview-checkins mailing list
Opsview-checkins@lists.opsview.org
http://lists.opsview.org/lists/listinfo/opsview-checkins

Reply via email to