X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fgenerator.c;h=414470be1c4a1ecf8029c60bb711ac93ea0a802e;hb=7de80bfe2e61d5818601ccfddbadad3b7703ed70;hp=762033bbdfaab8a9333c5906de12bf0f606c1800;hpb=2968644080fd103062f070e83edd620e0a58c44d;p=elogind.git diff --git a/src/shared/generator.c b/src/shared/generator.c index 762033bbd..414470be1 100644 --- a/src/shared/generator.c +++ b/src/shared/generator.c @@ -97,7 +97,7 @@ int generator_write_timeouts(const char *dir, const char *what, const char *wher * user input, like crypto devices. */ _cleanup_free_ char *node = NULL, *unit = NULL, *t = NULL; - char *prefix, *start, *timeout, *postfix; + char *start, *timeout; usec_t u; int r; size_t len; @@ -107,9 +107,11 @@ int generator_write_timeouts(const char *dir, const char *what, const char *wher else if ((start = mount_test_option(opts, "x-systemd.device-timeout"))) timeout = start + 25; else { - *filtered = strdup(opts); - if (!*filtered) - return log_oom(); + if (filtered) { + *filtered = strdup(opts ?: ""); + if (!*filtered) + return log_oom(); + } return 0; } @@ -119,11 +121,15 @@ int generator_write_timeouts(const char *dir, const char *what, const char *wher if (!t) return -ENOMEM; - prefix = strndupa(opts, start - opts - (start != opts)); - postfix = timeout + len + (timeout[len] != '\0'); - *filtered = strjoin(prefix, *postfix ? postfix : NULL, NULL); - if (!*filtered) - return log_oom(); + if (filtered) { + char *prefix, *postfix; + + prefix = strndupa(opts, start - opts - (start != opts)); + postfix = timeout + len + (start == opts && timeout[len] != '\0'); + *filtered = strjoin(prefix, *postfix ? postfix : NULL, NULL); + if (!*filtered) + return log_oom(); + } r = parse_sec(t, &u); if (r < 0) { @@ -140,6 +146,9 @@ int generator_write_timeouts(const char *dir, const char *what, const char *wher if (!unit) return -ENOMEM; - return write_drop_in_format(dir, unit, "device-timeout", - "[Unit]\nJobTimeoutSec=%u", u / USEC_PER_SEC); + return write_drop_in_format(dir, unit, 50, "device-timeout", + "# Automatically generated by %s\n\n" + "[Unit]\nJobTimeoutSec=" USEC_FMT, + program_invocation_short_name, + u / USEC_PER_SEC); }