summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-09-12 08:39:05 +0000
committerEric Andersen <andersen@codepoet.org>2003-09-12 08:39:05 +0000
commiteb213bd2a2d8cff9f65e5b4dfca3966d30d01558 (patch)
tree6c8c31240096d33f3f6e4c669e06525db056153e
parent7f2935ba0ec606e4a2ba04158acd3b44a6cb5903 (diff)
downloadbusybox-w32-1_00_pre3.tar.gz
busybox-w32-1_00_pre3.tar.bz2
busybox-w32-1_00_pre3.zip
As vodz just pointed out, I screwup up the call to bb_xasprintf!1_00_pre3
-rw-r--r--networking/ifupdown.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index 3662421a6..367aafa05 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -1023,7 +1023,7 @@ static int doit(char *str)
1023static int execute_all(struct interface_defn_t *ifd, execfn *exec, const char *opt) 1023static int execute_all(struct interface_defn_t *ifd, execfn *exec, const char *opt)
1024{ 1024{
1025 int i; 1025 int i;
1026 char *buf[100]; 1026 char *buf;
1027 for (i = 0; i < ifd->n_options; i++) { 1027 for (i = 0; i < ifd->n_options; i++) {
1028 if (strcmp(ifd->option[i].name, opt) == 0) { 1028 if (strcmp(ifd->option[i].name, opt) == 0) {
1029 if (!(*exec) (ifd->option[i].value)) { 1029 if (!(*exec) (ifd->option[i].value)) {
@@ -1032,7 +1032,7 @@ static int execute_all(struct interface_defn_t *ifd, execfn *exec, const char *o
1032 } 1032 }
1033 } 1033 }
1034 1034
1035 bb_xasprintf(buf, "run-parts /etc/network/if-%s.d", opt); 1035 bb_xasprintf(&buf, "run-parts /etc/network/if-%s.d", opt);
1036 (*exec)(buf); 1036 (*exec)(buf);
1037 1037
1038 return (1); 1038 return (1);