summaryrefslogtreecommitdiff
path: root/sfeed_plain.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2017-12-24 12:58:44 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2017-12-24 12:58:44 +0100
commitb232db436b7b9343c336ef941c47cf8b107d1f7e (patch)
tree1e49b07790ba186695dfd81fc53ccb287b17a00a /sfeed_plain.c
parent21ba6ab0544e688c3ef78cdefbadfa76ed729190 (diff)
format programs: ignore fields with an invalid time
this makes sure tail -f with multiple files ignores the ==> file <== lines too.
Diffstat (limited to 'sfeed_plain.c')
-rw-r--r--sfeed_plain.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sfeed_plain.c b/sfeed_plain.c
index b88a776..b2f5236 100644
--- a/sfeed_plain.c
+++ b/sfeed_plain.c
@@ -27,7 +27,8 @@ printfeed(FILE *fp, const char *feedname)
break;
parsedtime = 0;
- strtotime(fields[FieldUnixTimestamp], &parsedtime);
+ if (strtotime(fields[FieldUnixTimestamp], &parsedtime))
+ continue;
if (!(tm = localtime(&parsedtime)))
err(1, "localtime");