diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2004-09-24 02:36:44 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2004-09-24 02:36:44 +0000 |
commit | 29de86314a6d55d3ace0624a37a59f5bcf496250 (patch) | |
tree | 1d8450127d07418fe36c2fdf98819a3f09636966 /libbb | |
parent | afc9ab868660e866dcd446aa5444153ab2b7de2f (diff) | |
download | busybox-29de86314a6d55d3ace0624a37a59f5bcf496250.tar.gz |
Remove this error message at Vodz request, it was misleading.
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/correct_password.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libbb/correct_password.c b/libbb/correct_password.c index e3ff44689..570aa7e86 100644 --- a/libbb/correct_password.c +++ b/libbb/correct_password.c @@ -69,7 +69,6 @@ int correct_password ( const struct passwd *pw ) unencrypted = bb_askpass ( 0, "Password: " ); if ( !unencrypted ) { - fputs ( "cannot open /dev/tty\n", stderr ); return 0; } encrypted = crypt ( unencrypted, correct ); |