From b612d74c132d536a9226e5e770068f0867ab33a8 Mon Sep 17 00:00:00 2001 From: bug1 Date: Fri, 6 Dec 2002 08:10:40 +0000 Subject: Fix bug that stoped -a working git-svn-id: svn://busybox.net/trunk/busybox@6113 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- networking/ifupdown.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/networking/ifupdown.c b/networking/ifupdown.c index 1387033ba..450a50896 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -1405,12 +1405,14 @@ extern int ifupdown_main(int argc, char **argv) } } if (state_fp != NULL && !no_act) { + unsigned short j; + if (ftruncate(fileno(state_fp), 0) < 0) { error_msg_and_die("failed to truncate statefile %s: %s", statefile, strerror(errno)); } rewind(state_fp); - for (i = 0; i < n_state; i++) { + for (j = 0; j < n_state; j++) { fputs(state[i], state_fp); fputc('\n', state_fp); } -- cgit v1.2.3-55-g6feb