diff options
author | Rob Landley <rob@landley.net> | 2014-10-09 13:43:32 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-10-09 13:43:32 -0500 |
commit | 3d56716d362d6a827c5f81029ac64c71b56a2f5c (patch) | |
tree | 93377ffa6621214916c82b0985483e4d13822336 /toys/other/ifconfig.c | |
parent | 7196d758a0728bd43451f869eb85528b6cd20bea (diff) | |
download | toybox-3d56716d362d6a827c5f81029ac64c71b56a2f5c.tar.gz |
Various bugfixes (mostly resource leaks) from Ashwini Sharma's static analysis, plus occasional tweak by me while reviewing them.
Diffstat (limited to 'toys/other/ifconfig.c')
-rw-r--r-- | toys/other/ifconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/ifconfig.c b/toys/other/ifconfig.c index f5d4215e..4d5c74d0 100644 --- a/toys/other/ifconfig.c +++ b/toys/other/ifconfig.c @@ -6,7 +6,7 @@ * * Not in SUSv4. -USE_IFCONFIG(NEWTOY(ifconfig, "?a", TOYFLAG_BIN)) +USE_IFCONFIG(NEWTOY(ifconfig, "^?a", TOYFLAG_BIN)) config IFCONFIG bool "ifconfig" |