Don't warn when failed to open /etc/nsswitch.conf

Maybe we should have a debug mode where it's still printed, but
we don't, so let's be quieter.

Closes #557
This commit is contained in:
Serge Hallyn 2022-11-07 09:54:50 -06:00
parent eaebea55a4
commit 90424e7c20
1 changed files with 0 additions and 1 deletions

View File

@ -59,7 +59,6 @@ void nss_init(const char *nsswitch_path) {
// subid: files
nssfp = fopen(nsswitch_path, "r");
if (!nssfp) {
fprintf(shadow_logfd, "Failed opening %s: %m\n", nsswitch_path);
atomic_store(&nss_init_completed, true);
return;
}