From b2518f55c0bce9b3f32551c2a0e4addcaeac7b0f Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 30 Nov 1995 04:49:04 +0000 Subject: Wed Nov 29 12:30:50 1995 Roland McGrath * libio/vsnprintf.c (__vsnprintf): Define as alias. * libio/iovsscanf.c (__vsscanf): Define as alias. * asprintf.c: Remove libio adaptation code added by drepper. * dprintf.c: Likewise. * printf.c: Likewise. * scanf.c: Likewise. * snprintf.c: Likewise. * sprintf.c: Likewise. * sscanf.c: Likewise. * vprintf.c: Likewise. * stdio-common/vfscanf.c [USE_IN_LIBIO] (__vfscanf): New wrapper function. (vfscanf): Define unconditionally. * sysdeps/i386/dl-machine.h (elf_machine_rel): If SYM is null, use zero for value. * misc/getpass.c: Write a newline after reading the unechoed password. --- misc/getpass.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'misc') diff --git a/misc/getpass.c b/misc/getpass.c index ec535c1cca..bea2ac0d08 100644 --- a/misc/getpass.c +++ b/misc/getpass.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -77,8 +77,13 @@ getpass (prompt) if (nread < 0 && buf != NULL) buf[0] = '\0'; else if (buf[nread - 1] == '\n') - /* Remove the newline. */ - buf[nread - 1] = '\0'; + { + /* Remove the newline. */ + buf[nread - 1] = '\0'; + if (echo_off) + /* Write the newline that was not echoed. */ + putc ('\n', out); + } /* Restore echoing. */ if (echo_off) -- cgit 1.4.1