summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/warmstart.c9
1 files 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;
}