From 52fbdcba91df95ef342949a958f00bc0470f5777 Mon Sep 17 00:00:00 2001 From: Thorsten Kukuk Date: Wed, 17 Dec 2014 10:25:33 -0500 Subject: rpcbind: remove error message on warmstart Don't print an error message on warmstart if the startup files don't exist (take two) Signed-off-by: Steve Dickson --- src/warmstart.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/warmstart.c b/src/warmstart.c index 85ecf96..b6eb73e 100644 --- a/src/warmstart.c +++ b/src/warmstart.c @@ -105,10 +105,11 @@ read_struct(char *filename, xdrproc_t structproc, void *list) if (debugging) fprintf(stderr, "rpcbind: using '%s' startup file\n", filename); - if (((fp = fopen(filename, "r")) == NULL) && errno != ENOENT) { - syslog(LOG_ERR, - "Cannot open '%s' file for reading, errno %d (%s)", - filename, errno, strerror(errno)); + if ((fp = fopen(filename, "r")) == NULL) { + if (errno != ENOENT) + syslog(LOG_ERR, + "Cannot open '%s' file for reading, errno %d (%s)", + filename, errno, strerror(errno)); goto error; } -- cgit v1.2.1