aboutsummaryrefslogtreecommitdiffstats
path: root/src/apoint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/apoint.c')
-rw-r--r--src/apoint.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/apoint.c b/src/apoint.c
index d200cf3..e8f9ee8 100644
--- a/src/apoint.c
+++ b/src/apoint.c
@@ -234,13 +234,13 @@ struct apoint *apoint_scan(FILE * f, struct tm start, struct tm end,
return NULL;
if (filter->regex && regexec(filter->regex, buf, 0, 0, 0))
return NULL;
- if (filter->start_from >= 0 && tstart < filter->start_from)
+ if (filter->start_from != -1 && tstart < filter->start_from)
return NULL;
- if (filter->start_to >= 0 && tstart > filter->start_to)
+ if (filter->start_to != -1 && tstart > filter->start_to)
return NULL;
- if (filter->end_from >= 0 && tend < filter->end_from)
+ if (filter->end_from != -1 && tend < filter->end_from)
return NULL;
- if (filter->end_to >= 0 && tend > filter->end_to)
+ if (filter->end_to != -1 && tend > filter->end_to)
return NULL;
}