Merge pull request #343 from hallyn/2021-05-23/quiet

libsubid_init: don't print messages on error
This commit is contained in:
Serge Hallyn 2021-05-23 08:03:58 -05:00 committed by GitHub
commit 0fe42f571c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,12 +46,10 @@ bool libsubid_init(const char *progname, FILE * logfd)
{
if (progname) {
progname = strdup(progname);
if (progname) {
if (progname)
Prog = progname;
} else {
fprintf(stderr, "Out of memory");
else
return false;
}
}
if (logfd) {
@ -60,7 +58,6 @@ bool libsubid_init(const char *progname, FILE * logfd)
}
shadow_logfd = fopen("/dev/null", "w");
if (!shadow_logfd) {
fprintf(stderr, "ERROR opening /dev/null for error messages. Using stderr.");
shadow_logfd = stderr;
return false;
}