chiark / gitweb /
unit: fix typo
authorLennart Poettering <lennart@poettering.net>
Sat, 19 Jan 2013 00:18:01 +0000 (01:18 +0100)
committerLennart Poettering <lennart@poettering.net>
Sat, 19 Jan 2013 00:18:01 +0000 (01:18 +0100)
src/core/unit.c

index 98237c81472d5b2095db445cad4732b41978e8a5..b2a47653b66061fe8c4e60edafb8159010cdc3fb 100644 (file)
@@ -2769,7 +2769,7 @@ int unit_write_drop_in(Unit *u, bool runtime, const char *name, const char *data
         if (!filename_is_safe(name))
                 return -EINVAL;
 
-        p = strjoin(runtime ? "/run/systemd/system/" : "/etc/systemd/systemd/", u->id, ".d", NULL);
+        p = strjoin(runtime ? "/run/systemd/system/" : "/etc/systemd/system/", u->id, ".d", NULL);
         if (!p)
                 return -ENOMEM;
 
@@ -2792,7 +2792,7 @@ int unit_remove_drop_in(Unit *u, bool runtime, const char *name) {
         if (!filename_is_safe(name))
                 return -EINVAL;
 
-        p = strjoin(runtime ? "/run/systemd/system/" : "/etc/systemd/systemd/", u->id, ".d", NULL);
+        p = strjoin(runtime ? "/run/systemd/system/" : "/etc/systemd/system/", u->id, ".d", NULL);
         if (!p)
                 return -ENOMEM;