diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-08 04:09:17 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-08 04:09:17 +0200 |
commit | 1e3ad081efda42dd1cc737ce7e98be8889c78340 (patch) | |
tree | 95e2dab095999baa69ad62d413e72b318daf8760 /src/kmod-setup.c | |
parent | 398ef8ba0266cca453d90a90b3a2aa1caa44189f (diff) |
execute: if the main process of a service already owns the TTY, don't wait for acquiring it again in the reload/stop step
Diffstat (limited to 'src/kmod-setup.c')
-rw-r--r-- | src/kmod-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kmod-setup.c b/src/kmod-setup.c index e3925c5ac9..3ce6fcc77b 100644 --- a/src/kmod-setup.c +++ b/src/kmod-setup.c @@ -70,7 +70,7 @@ int kmod_setup(void) { command.argv = (char**) cmdline; exec_context_init(&context); - r = exec_spawn(&command, NULL, &context, NULL, 0, NULL, false, false, false, NULL, &pid); + r = exec_spawn(&command, NULL, &context, NULL, 0, NULL, false, false, false, false, NULL, &pid); exec_context_done(&context); if (r < 0) |