diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-02-11 20:42:24 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-02-13 15:48:32 +0100 |
commit | 5f9cfd4c3877fdc68618faf9ae5efb5948e002b6 (patch) | |
tree | 5decc6b7384623f968214e6f12df9f5817cc974b /src/shared | |
parent | man: Make options consistent (diff) | |
download | systemd-5f9cfd4c3877fdc68618faf9ae5efb5948e002b6.tar.xz systemd-5f9cfd4c3877fdc68618faf9ae5efb5948e002b6.zip |
man: rename systemd.conf to systemd-system.conf
Alias as systemd-user.conf is also provided. This should help
users running systemd in session mode.
https://bugzilla.redhat.com/show_bug.cgi?id=690868
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/env-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/env-util.c b/src/shared/env-util.c index 0f1ac9294b..54988e6437 100644 --- a/src/shared/env-util.c +++ b/src/shared/env-util.c @@ -108,7 +108,7 @@ bool env_assignment_is_valid(const char *e) { /* POSIX says the overall size of the environment block cannot * be > ARG_MAX, hence the individual variable assignments - * cannot be either, but let's room for one trailing NUL + * cannot be either, but let's leave room for one trailing NUL * byte. */ if (strlen(e) > ARG_MAX - 1) return false; |