commit 893de4b513adfa7464dbbc454151b9ec1559c0db
parent a5600ecf20ec102553639567bc15d42857f97c18
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sun, 3 Mar 2019 13:19:48 +0100
skip spaces in parsetime() itself
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sfeed.c b/sfeed.c
@@ -343,7 +343,7 @@ string_print_timestamp(String *s)
if (!s->data || !s->len)
return;
- if (parsetime(ltrim(s->data), &t) != -1)
+ if (parsetime(s->data, &t) != -1)
printf("%lld", (long long)t);
}
@@ -495,6 +495,8 @@ parsetime(const char *s, time_t *tp)
int va[6] = { 0 }, i, j, v, vi;
size_t m;
+ for (; *s && isspace((unsigned char)*s); s++)
+ ;
if (!isdigit((unsigned char)*s) && !isalpha((unsigned char)*s))
return -1;