aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/ifupdown.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index ad0a9971b..9fc1266da 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -259,7 +259,7 @@ static char *parse(const char *command, struct interface_defn_t *ifd)
259 opt_depth++; 259 opt_depth++;
260 command += 2; 260 command += 2;
261 } else { 261 } else {
262 addstr(&result, "[", 1); 262 addstr(&result, command, 1);
263 command++; 263 command++;
264 } 264 }
265 break; 265 break;
@@ -271,7 +271,7 @@ static char *parse(const char *command, struct interface_defn_t *ifd)
271 } 271 }
272 command += 2; 272 command += 2;
273 } else { 273 } else {
274 addstr(&result, "]", 1); 274 addstr(&result, command, 1);
275 command++; 275 command++;
276 } 276 }
277 break; 277 break;