diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-05 01:08:13 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-05 01:08:13 +0200 |
commit | 74922904348e53a992af63c581d4ccd3317ccce0 (patch) | |
tree | 7fd6588cbaf49feda15d3dd02fcd23ea9911124e /src/execute.h | |
parent | a567261a29b4e19c0c195240411b7562063d99f8 (diff) |
turn negative options into positive options
Diffstat (limited to 'src/execute.h')
-rw-r--r-- | src/execute.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/execute.h b/src/execute.h index 1ab6a24d9b..2e0e6cca3c 100644 --- a/src/execute.h +++ b/src/execute.h @@ -103,7 +103,7 @@ struct ExecContext { int syslog_priority; char *syslog_identifier; - bool syslog_no_prefix; + bool syslog_level_prefix; char *tcpwrap_name; @@ -142,7 +142,7 @@ struct ExecContext { * /bin/mount it is run in the same process group as us so * that the autofs logic detects that it belongs to us and we * don't enter a trigger loop. */ - bool no_setsid; + bool same_pgrp; }; typedef enum ExitStatus { |