3da827
diff -up rpcbind-0.2.0/src/warmstart.c.orig rpcbind-0.2.0/src/warmstart.c
3da827
--- rpcbind-0.2.0/src/warmstart.c.orig	2015-07-30 13:54:52.236810612 -0400
3da827
+++ rpcbind-0.2.0/src/warmstart.c	2015-07-30 13:56:25.469502104 -0400
3da827
@@ -106,9 +106,10 @@ read_struct(char *filename, xdrproc_t st
3da827
 		fprintf(stderr, "rpcbind: using '%s' startup file\n", filename);
3da827
 
3da827
 	if ((fp = fopen(filename, "r")) == NULL) {
3da827
-		syslog(LOG_ERR,
3da827
-			"Cannot open '%s' file for reading, errno %d (%s)", 
3da827
-			filename, errno, strerror(errno));
3da827
+		if (errno != ENOENT)
3da827
+			syslog(LOG_ERR,
3da827
+				"Cannot open '%s' file for reading, errno %d (%s)", 
3da827
+				filename, errno, strerror(errno));
3da827
 		goto error;
3da827
 	}
3da827