summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-07-12 02:39:41 -0400
committerIan Moffett <ian@osmora.org>2025-07-13 03:30:26 -0400
commit555a2f4a603955743c11803b7b2095f419acc3f8 (patch)
tree69cf137a0c7d0e5c11e40176842939e792e6edf2
parent529ceba1f90f995c690fdb71143bc4b293ace55e (diff)
usr.bin: login: Remove useless debug message
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--usr.bin/login/login.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.bin/login/login.c b/usr.bin/login/login.c
index e9b5e88..93b08ed 100644
--- a/usr.bin/login/login.c
+++ b/usr.bin/login/login.c
@@ -254,7 +254,6 @@ getuser(FILE *fp)
while (fgets(entry, sizeof(entry), fp) != NULL) {
retval = check_user(alias, pwhash, entry);
if (retval == 0) {
- printf("login: successful\n");
free(alias);
return 0;
}