From 63f791d30309ea038012a135de693721f57edd0f Mon Sep 17 00:00:00 2001 From: Geoff Keating Date: Tue, 29 Feb 2000 05:21:42 +0000 Subject: * Makeconfig (all-subdirs): Add 'crypt' subdirectory. * sysdeps/unix/sysv/linux/configure.in (inhibit_glue): Don't complain if there is no crypt add-on. * crypt/configure: Removed. * crypt/crypt.texi: Update documentation of US export restrictions to match the 14 Jan 2000 regulations. 2000-02-28 Geoff Keating * Makeconfig (all-subdirs): Add 'crypt' subdirectory. * sysdeps/unix/sysv/linux/configure.in (inhibit_glue): Don't complain if there is no crypt add-on. * crypt/configure: Removed. * crypt/crypt.texi: Update documentation of US export restrictions to match the 14 Jan 2000 regulations. 2000-02-28 Geoff Keating * crypt: New subdirectory, merged in from the crypt add-on. --- crypt/mygetpass.c.texi | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 crypt/mygetpass.c.texi (limited to 'crypt/mygetpass.c.texi') diff --git a/crypt/mygetpass.c.texi b/crypt/mygetpass.c.texi new file mode 100644 index 0000000000..717d21447f --- /dev/null +++ b/crypt/mygetpass.c.texi @@ -0,0 +1,25 @@ +#include +#include + +ssize_t +my_getpass (char **lineptr, size_t *n, FILE *stream) +@{ + struct termios old, new; + int nread; + + /* @r{Turn echoing off and fail if we can't.} */ + if (tcgetattr (fileno (stream), &old) != 0) + return -1; + new = old; + new.c_lflag &= ~ECHO; + if (tcsetattr (fileno (stream), TCSAFLUSH, &new) != 0) + return -1; + + /* @r{Read the password.} */ + nread = getline (lineptr, n, stream); + + /* @r{Restore terminal.} */ + (void) tcsetattr (fileno (stream), TCSAFLUSH, &old); + + return nread; +@} -- cgit 1.4.1