diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-01-06 00:29:40 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-01-06 00:29:40 -0500 |
commit | 553d2243e2a42783b8bb94addfb752b802c23311 (patch) | |
tree | 89abe0414a704ea4e9558d44be42eed7d7cfb107 /src/core/execute.c | |
parent | 5dabb1e04e4521abf040e77a8322b70e7acdc7b0 (diff) |
tree-wide: remove unnecessary LOG_PRI
LOG_DEBUG is already a log level, there is no need to use LOG_PRI which
is for filtering out the facility.
Diffstat (limited to 'src/core/execute.c')
-rw-r--r-- | src/core/execute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index 51e1e87236..0af4227b0e 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -797,7 +797,7 @@ static int setup_pam( * daemon. We do things this way to ensure that the main PID * of the daemon is the one we initially fork()ed. */ - if (log_get_max_level() < LOG_PRI(LOG_DEBUG)) + if (log_get_max_level() < LOG_DEBUG) flags |= PAM_SILENT; pam_code = pam_start(name, user, &conv, &handle); @@ -1782,7 +1782,7 @@ static int exec_child(ExecCommand *command, final_env = strv_env_clean(final_env); - if (_unlikely_(log_get_max_level() >= LOG_PRI(LOG_DEBUG))) { + if (_unlikely_(log_get_max_level() >= LOG_DEBUG)) { _cleanup_free_ char *line; line = exec_command_line(final_argv); |