svn commit: trunk/busybox/networking

vda at busybox.net vda at busybox.net
Fri Mar 9 22:48:08 UTC 2007


Author: vda
Date: 2007-03-09 14:48:08 -0800 (Fri, 09 Mar 2007)
New Revision: 18059

Log:
ifupdown: do not complain if !/var/run/ifstate


Modified:
   trunk/busybox/networking/ifupdown.c


Changeset:
Modified: trunk/busybox/networking/ifupdown.c
===================================================================
--- trunk/busybox/networking/ifupdown.c	2007-03-09 22:46:06 UTC (rev 18058)
+++ trunk/busybox/networking/ifupdown.c	2007-03-09 22:48:08 UTC (rev 18059)
@@ -1119,7 +1119,7 @@
 	if (!startup_PATH) startup_PATH = "";
 
 	/* Read the previous state from the state file */
-	state_fp = fopen_or_warn("/var/run/ifstate", "r");
+	state_fp = fopen("/var/run/ifstate", "r");
 	if (state_fp) {
 		char *start, *end_ptr;
 		while ((start = xmalloc_fgets(state_fp)) != NULL) {




More information about the busybox-cvs mailing list