Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-10 01:48:08 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-10 01:48:08 +0300
commit2b52b2797bae774656b3f79ed1939a08fbed7b0e (patch)
treeba80811d0e5eb5484487e62215329f20f8ff1cad /networking/ifupdown.c
parent3aba666514c8c1d6d5b21961e8f4253fd6dd2cca (diff)
ifupdown: do not complain if !/var/run/ifstate
Diffstat (limited to 'networking/ifupdown.c')
-rw-r--r--networking/ifupdown.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index 8e750feaf..9d35254ee 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -1119,7 +1119,7 @@ int ifupdown_main(int argc, char **argv)
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) {