aboutsummaryrefslogtreecommitdiffstats
path: root/package/opkg/patches/010-remove-flag.patch
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-11-11 21:42:05 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-11-11 21:42:05 +0000
commit2355f9d497677cb55c47a1c2d3b7371e9b0c9c8a (patch)
treed1026d2e2463bbc74ac90a7d6531c0ce9f21e28b /package/opkg/patches/010-remove-flag.patch
parenta195852e7f0b0808d3b8447fd07483009e7bbe3c (diff)
downloadupstream-2355f9d497677cb55c47a1c2d3b7371e9b0c9c8a.tar.gz
upstream-2355f9d497677cb55c47a1c2d3b7371e9b0c9c8a.tar.bz2
upstream-2355f9d497677cb55c47a1c2d3b7371e9b0c9c8a.zip
opkg: bump to r284 - incorporates parsing improvements upstream - fixes a couple of memory leaks - fixes some null pointer dereferences - fixes possible crashes during removal of packages - various other corrections
SVN-Revision: 18380
Diffstat (limited to 'package/opkg/patches/010-remove-flag.patch')
-rw-r--r--package/opkg/patches/010-remove-flag.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/package/opkg/patches/010-remove-flag.patch b/package/opkg/patches/010-remove-flag.patch
index 20bebda4b6..9b988b89e0 100644
--- a/package/opkg/patches/010-remove-flag.patch
+++ b/package/opkg/patches/010-remove-flag.patch
@@ -1,6 +1,6 @@
--- a/libopkg/args.c
+++ b/libopkg/args.c
-@@ -268,8 +268,6 @@
+@@ -264,8 +264,6 @@
printf("\tinstall <file.opk> Install package <file.opk>\n");
printf("\tconfigure [<pkg>] Configure unpacked packages\n");
printf("\tremove <pkg|regexp> Remove package <pkg|packages following regexp>\n");
@@ -11,7 +11,7 @@
printf("\tlist List available packages and descriptions\n");
--- a/libopkg/opkg_cmd.c
+++ b/libopkg/opkg_cmd.c
-@@ -58,7 +58,6 @@
+@@ -54,7 +54,6 @@
static int opkg_list_upgradable_cmd(opkg_conf_t *conf, int argc, char **argv);
static int opkg_remove_cmd(opkg_conf_t *conf, int argc, char **argv);
static int opkg_purge_cmd(opkg_conf_t *conf, int argc, char **argv);
@@ -19,7 +19,7 @@
static int opkg_files_cmd(opkg_conf_t *conf, int argc, char **argv);
static int opkg_search_cmd(opkg_conf_t *conf, int argc, char **argv);
static int opkg_download_cmd(opkg_conf_t *conf, int argc, char **argv);
-@@ -84,7 +83,6 @@
+@@ -80,7 +79,6 @@
{"list_installed", 0, (opkg_cmd_fun_t)opkg_list_installed_cmd},
{"list_upgradable", 0, (opkg_cmd_fun_t)opkg_list_upgradable_cmd},
{"info", 0, (opkg_cmd_fun_t)opkg_info_cmd},
@@ -27,7 +27,7 @@
{"status", 0, (opkg_cmd_fun_t)opkg_status_cmd},
{"install_pending", 0, (opkg_cmd_fun_t)opkg_install_pending_cmd},
{"install", 1, (opkg_cmd_fun_t)opkg_install_cmd},
-@@ -1050,48 +1048,6 @@
+@@ -960,48 +958,6 @@
return 0;
}