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;
 }
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to