diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-11-20 16:14:20 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-11-20 16:14:20 +0000 |
commit | c370177c68eb3b327a9abef4e139dbad64db0a7a (patch) | |
tree | 878a3a940f23d30b4f4eb97ce97bcc6ef2295db4 /src | |
parent | c5bda0ed2981e45b6b96b62612ffb876ad094747 (diff) | |
download | rspamd-c370177c68eb3b327a9abef4e139dbad64db0a7a.tar.gz rspamd-c370177c68eb3b327a9abef4e139dbad64db0a7a.zip |
Check for libutil more strictly.
Diffstat (limited to 'src')
-rw-r--r-- | src/util.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index 7383f23d6..46e99c309 100644 --- a/src/util.c +++ b/src/util.c @@ -2305,10 +2305,13 @@ rspamd_read_passphrase (gchar *buf, gint size, gint rwflag, gpointer key) gchar *end, *p, ch; restart: - if ((input = output = open (_PATH_TTY, O_RDWR | O_CLOEXEC)) == -1) { + if ((input = output = open (_PATH_TTY, O_RDWR)) == -1) { errno = ENOTTY; return 0; } + if (fcntl (input, F_SETFD, FD_CLOEXEC) == -1) { + msg_warn ("fcntl failed: %d, '%s'", errno, strerror (errno)); + } /* Turn echo off */ if (tcgetattr (input, &oterm) != 0) { |