From: Zbigniew Jędrzejewski-Szmek Date: Fri, 26 Apr 2019 06:46:01 +0000 (+0200) Subject: run: reword a comment X-Git-Tag: v243-rc1~467^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e608bf6f7f95de208ca95f9d2d782203dd78e1ab;p=thirdparty%2Fsystemd.git run: reword a comment Use unicode m-dash and remove the part about discoverability, since it's just a warning on the terminal. --- diff --git a/src/run/run.c b/src/run/run.c index babd9027e49..f200b28dfe5 100644 --- a/src/run/run.c +++ b/src/run/run.c @@ -390,11 +390,10 @@ static int parse_argv(int argc, char *argv[]) { r = calendar_spec_next_usec(cs, now(CLOCK_REALTIME), NULL); if (r == -ENOENT) - /* The calendar event is in the past - let's warn about this, but install it - * anyway as it is. The service manager will trigger the service right-away - * then, but everything is discoverable as usual. Moreover, the server side - * might have a different clock or timezone than we do, hence it should - * decide when or whether to run something. */ + /* The calendar event is in the past — let's warn about this, but install it + * anyway as is. The service manager will trigger the service right away. + * Moreover, the server side might have a different clock or timezone than we + * do, hence it should decide when or whether to run something. */ log_warning("Specified calendar expression is in the past, proceeding anyway."); else if (r < 0) return log_error_errno(r, "Failed to calculate next time calendar expression elapses: %m");