summaryrefslogtreecommitdiffstats
path: root/readpass.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:24:51 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:24:51 +1100
commit85830d1dc0b4728f26596ee1e1c901cd1ddd24e5 (patch)
tree1555460de9757febb1a028ab258e87ea8c48c69c /readpass.c
parenta5ebe0c39d30ce6c22bf152c638ea753c531ecb2 (diff)
- markus@cvs.openbsd.org 2002/01/11 23:02:18
[readpass.c] use _PATH_TTY
Diffstat (limited to 'readpass.c')
-rw-r--r--readpass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readpass.c b/readpass.c
index 7e13828b..c3cfe1da 100644
--- a/readpass.c
+++ b/readpass.c
@@ -32,7 +32,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: readpass.c,v 1.24 2001/12/21 08:53:45 djm Exp $");
+RCSID("$OpenBSD: readpass.c,v 1.25 2002/01/11 23:02:18 markus Exp $");
#include "xmalloc.h"
#include "readpass.h"
@@ -112,7 +112,7 @@ read_passphrase(const char *prompt, int flags)
use_askpass = 1;
} else {
rppflags |= RPP_REQUIRE_TTY;
- ttyfd = open("/dev/tty", O_RDWR);
+ ttyfd = open(_PATH_TTY, O_RDWR);
if (ttyfd >= 0)
close(ttyfd);
else