diff options
author | AsciiWolf <mail@asciiwolf.com> | 2017-02-24 18:14:02 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-02-24 18:14:02 +0100 |
commit | 13e785f7a0d2c78fbd822b1157ef9d7ee3fef805 (patch) | |
tree | 168c1a8cd9b6132ef15c61a302d55303e66da06d /src/core | |
parent | ecc0eab247da25a6767ccabd2162a4d03de6ee8c (diff) |
Fix missing space in comments (#5439)
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/namespace.c | 2 | ||||
-rw-r--r-- | src/core/socket.c | 2 | ||||
-rw-r--r-- | src/core/unit.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/namespace.c b/src/core/namespace.c index 75dca5b791..4f29217bc4 100644 --- a/src/core/namespace.c +++ b/src/core/namespace.c @@ -799,7 +799,7 @@ static int make_read_only(MountEntry *m, char **blacklist) { if (mount_entry_read_only(m)) r = bind_remount_recursive(mount_entry_path(m), true, blacklist); - else if (m->mode == PRIVATE_DEV) { /* Superblock can be readonly but the submounts can't*/ + else if (m->mode == PRIVATE_DEV) { /* Superblock can be readonly but the submounts can't */ if (mount(NULL, mount_entry_path(m), NULL, MS_REMOUNT|DEV_MOUNT_OPTIONS|MS_RDONLY, NULL) < 0) r = -errno; } else diff --git a/src/core/socket.c b/src/core/socket.c index 84b7a1a82d..c4da227e09 100644 --- a/src/core/socket.c +++ b/src/core/socket.c @@ -1260,7 +1260,7 @@ static int usbffs_address_create(const char *path) { if (fstat(fd, &st) < 0) return -errno; - /* Check whether this is a regular file (ffs endpoint)*/ + /* Check whether this is a regular file (ffs endpoint) */ if (!S_ISREG(st.st_mode)) return -EEXIST; diff --git a/src/core/unit.c b/src/core/unit.c index 685df6f00d..b784277a96 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -3895,7 +3895,7 @@ int unit_kill_context( * should not exist in non-delegated units. On * the unified hierarchy that's different, * there we get proper events. Hence rely on - * them.*/ + * them. */ if (cg_unified(SYSTEMD_CGROUP_CONTROLLER) || (detect_container() == 0 && !unit_cgroup_delegate(u))) |