X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fsystemctl.c;h=b584e7032b9558672b5424d854096ffdaf974a6e;hb=1a63987788624a8819b94b199aa6748665f5e957;hp=f6dca5b37428da201263ac772866971c25f12d03;hpb=be394c48a7cb47bf25b367cd26bcbeedda187556;p=elogind.git diff --git a/src/systemctl.c b/src/systemctl.c index f6dca5b37..b584e7032 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -4815,10 +4815,10 @@ static int parse_time_spec(const char *t, usec_t *_u) { if (streq(t, "now")) *_u = 0; - else if (t[0] == '+') { + else if (!strchr(t, ':')) { uint64_t u; - if (safe_atou64(t + 1, &u) < 0) + if (safe_atou64(t, &u) < 0) return -EINVAL; *_u = now(CLOCK_REALTIME) + USEC_PER_MINUTE * u;