diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-06-26 12:16:18 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-06-26 12:21:43 +0200 |
commit | af6da548aa14c57da7f17b3a1f2211efdb811d19 (patch) | |
tree | e118258cb9795ee0b80b656c9aca121cf7bc8b3e /src/shared/util.h | |
parent | 0c7f15b3a95c3596a4756de5c44eb1fdcd0034fc (diff) |
core: make systemd.confirm_spawn=1 actually work
This adds a timeout if the TTY cannot be acquired and makes sure we
always output the question to the console, never to the TTY of the
respective service.
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 908593564e..47497b578c 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -321,7 +321,7 @@ int reset_terminal_fd(int fd, bool switch_to_text); int reset_terminal(const char *name); int open_terminal(const char *name, int mode); -int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm); +int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm, usec_t timeout); int release_terminal(void); int flush_fd(int fd); |