summaryrefslogtreecommitdiffstats
path: root/pw
diff options
context:
space:
mode:
authorDavid Nugent <davidn@FreeBSD.org>1996-12-20 10:45:39 +0000
committerDavid Nugent <davidn@FreeBSD.org>1996-12-20 10:45:39 +0000
commit16a21e7a7bdcc33504a9ee08c9af57d1c8dc874f (patch)
treedec2826f40ca143d63d212e9c1dadacd3edfe664 /pw
parentfb318265f4aee122f20f5750cea5238f9baddffc (diff)
downloadpw-darwin-16a21e7a7bdcc33504a9ee08c9af57d1c8dc874f.tar.gz
pw-darwin-16a21e7a7bdcc33504a9ee08c9af57d1c8dc874f.tar.zst
pw-darwin-16a21e7a7bdcc33504a9ee08c9af57d1c8dc874f.zip
Bugfix (cosmetic) for output of generated passwords.
Diffstat (limited to 'pw')
-rw-r--r--pw/pw_user.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pw/pw_user.c b/pw/pw_user.c
index dabf795..4d6131f 100644
--- a/pw/pw_user.c
+++ b/pw/pw_user.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: pw_user.c,v 1.5 1996/12/17 14:15:35 davidn Exp $
+ * $Id: pw_user.c,v 1.6 1996/12/19 15:22:45 davidn Exp $
*/
#include <unistd.h>
@@ -829,8 +829,8 @@ pw_password(struct userconf * cnf, struct cargs * args, char const * user)
* We give this information back to the user
*/
if (getarg(args, 'h') == NULL && getarg(args, 'N') == NULL) {
- if (isatty(0))
- printf("Password is: ");
+ if (isatty(1))
+ printf("Password for '%s' is: ", user);
printf("%s\n", pwbuf);
fflush(stdout);
}