diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2015-05-01 11:13:36 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2015-05-01 11:13:36 +0200 |
commit | 289d5519971f26fccff37293e0d1ff100f1df321 (patch) | |
tree | d8c2f05d0a703c8716be22321365d1e712f1474f /testing/ifupdown/ifupdown-busybox-compat.patch | |
parent | b32b52f051f062a695bbbcf58239eee6186abf1e (diff) | |
download | aports-289d5519971f26fccff37293e0d1ff100f1df321.tar.bz2 aports-289d5519971f26fccff37293e0d1ff100f1df321.tar.xz |
testing/ifupdown: move to main
Diffstat (limited to 'testing/ifupdown/ifupdown-busybox-compat.patch')
-rw-r--r-- | testing/ifupdown/ifupdown-busybox-compat.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/testing/ifupdown/ifupdown-busybox-compat.patch b/testing/ifupdown/ifupdown-busybox-compat.patch deleted file mode 100644 index 36c3d7ceb7..0000000000 --- a/testing/ifupdown/ifupdown-busybox-compat.patch +++ /dev/null @@ -1,40 +0,0 @@ -diff --git a/main.c b/main.c -index eea2492..008ed8f 100644 ---- a/main.c -+++ b/main.c -@@ -89,7 +89,7 @@ static void help(char *execname, int (*cmds) (interface_defn *)) - printf("\t--no-loopback\t\tdon't act specially on the loopback device\n"); - if (!(cmds == iface_list) - && !(cmds == iface_query)) { -- printf("\t--force\t\t\tforce de/configuration\n"); -+ printf("\t-f,--force\t\t\tforce de/configuration\n"); - printf("\t--ignore-errors\t\t\tignore errors\n"); - } - if ((cmds == iface_list) -@@ -410,7 +410,7 @@ int main(int argc, char **argv) - {"no-mappings", no_argument, NULL, 1}, - {"no-scripts", no_argument, NULL, 4}, - {"no-loopback", no_argument, NULL, 5}, -- {"force", no_argument, NULL, 2}, -+ {"force", no_argument, NULL, 'f'}, - {"ignore-errors", no_argument, NULL, 7}, - {"option", required_argument, NULL, 'o'}, - {"list", no_argument, NULL, 'l'}, -@@ -473,7 +473,7 @@ int main(int argc, char **argv) - } - for (;;) { - int c; -- c = getopt_long(argc, argv, "X:s:i:o:hVvnal", long_opts, NULL); -+ c = getopt_long(argc, argv, "X:s:i:o:hVvnalf", long_opts, NULL); - if (c == EOF) - break; - -@@ -504,7 +504,7 @@ int main(int argc, char **argv) - case 5: - no_loopback = true; - break; -- case 2: -+ case 'f': - if ((cmds == iface_list) || (cmds == iface_query)) - usage(argv[0]); - force = 1; |