getpwnam-preload.c: no longer log shell

This commit is contained in:
Jörg Thalheim
2024-12-04 14:57:00 +01:00
parent 6135b52c32
commit e499aa0903

View File

@@ -20,7 +20,6 @@ struct passwd *getpwnam(const char *name) {
fprintf(stderr, "no LOGIN_SHELL set\n");
exit(1);
}
fprintf(stderr, "SHELL:%s\n", shell);
pw->pw_shell = strdup(shell);
}
return pw;