From: Lennart Poettering Date: Wed, 9 Feb 2011 00:11:19 +0000 (+0100) Subject: systemctl: fix opening params X-Git-Tag: v18~48 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1c0f1c1366eaec64a804c6011df867ea75ed295;p=systemd systemctl: fix opening params --- diff --git a/src/systemctl.c b/src/systemctl.c index 8527cd1a..c09b31d1 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -180,7 +180,7 @@ static void spawn_ask_password_agent(void) { * call that expects to read EOF we actually do * generate EOF and not delay this indefinitely by * because we keep an unused copy of stdin around. */ - if ((fd = open("/dev/tty", O_RDWR|O_CLOEXEC|O_NONBLOCK)) < 0) { + if ((fd = open("/dev/tty", O_RDWR)) < 0) { log_error("Failed to open /dev/tty: %m"); _exit(EXIT_FAILURE); }