svn commit: r214011 - head/usr.sbin/ppp

Gleb Smirnoff glebius at FreeBSD.org
Mon Oct 18 07:28:54 UTC 2010


Author: glebius
Date: Mon Oct 18 07:28:53 2010
New Revision: 214011
URL: http://svn.freebsd.org/changeset/base/214011

Log:
  Log if fopen() fails.
  
  Reviewed by:	brian

Modified:
  head/usr.sbin/ppp/ipcp.c

Modified: head/usr.sbin/ppp/ipcp.c
==============================================================================
--- head/usr.sbin/ppp/ipcp.c	Mon Oct 18 05:44:11 2010	(r214010)
+++ head/usr.sbin/ppp/ipcp.c	Mon Oct 18 07:28:53 2010	(r214011)
@@ -319,8 +319,11 @@ ipcp_WriteDNS(struct ipcp *ipcp)
                  strerror(errno));
       return 0;
     }
-  } else
+  } else {
     umask(mask);
+    log_Printf(LogERROR,"fopen(\"%s\", \"w\") failed: %s\n", _PATH_RESCONF,
+                 strerror(errno));
+  }
 
   return 1;
 }


More information about the svn-src-head mailing list