Lessen EACCES log spam
am: be9b6f8071

Change-Id: I6e6263c1dc535e986b6cf952b61bf44fcf24627a
diff --git a/src/dnsmasq.c b/src/dnsmasq.c
index c98fda2..cc3a6a4 100755
--- a/src/dnsmasq.c
+++ b/src/dnsmasq.c
@@ -110,6 +110,7 @@
 
         if (fstat(i, &stat_buf) != 0) {
             if (errno == EBADF) continue;
+            if (errno == EACCES) continue;  // Lessen the log spam.
             my_syslog(LOG_ERR, "fstat(%d) error: %d/%s", i, errno, strerror(errno));
         } else {
             my_syslog(LOG_ERR, "Closing inherited file descriptor %d (%u:%u)",