diff options
Diffstat (limited to 'src/librc/librc-daemon.c')
-rw-r--r-- | src/librc/librc-daemon.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/librc/librc-daemon.c b/src/librc/librc-daemon.c index 4abe02fb..ec02e8b7 100644 --- a/src/librc/librc-daemon.c +++ b/src/librc/librc-daemon.c @@ -129,7 +129,7 @@ rc_find_pids(const char *exec, const char *const *argv, uid_t uid, pid_t pid) if (exists("/proc/self/status")) { fp = fopen("/proc/self/status", "r"); if (fp) { - while (! feof(fp)) { + while (!feof(fp)) { rc_getline(&line, &len, fp); if (strncmp(line, "envID:\t0", 8) == 0) { openvz_host = true; @@ -183,12 +183,12 @@ rc_find_pids(const char *exec, const char *const *argv, uid_t uid, pid_t pid) if (exists(buffer)) { fp = fopen(buffer, "r"); free(buffer); - if (! fp) + if (!fp) continue; - while (! feof(fp)) { + while (!feof(fp)) { rc_getline(&line, &len, fp); if (strncmp(line, "envID:", 6) == 0) { - container_pid = ! (strncmp(line, "envID:\t0", 8) == 0); + container_pid = !(strncmp(line, "envID:\t0", 8) == 0); break; } } |