From 6e5ac111a68f68c28e973719154a0acfdbeaf7d6 Mon Sep 17 00:00:00 2001 From: ticktock35 Date: Mon, 15 Dec 2008 00:19:30 -0500 Subject: opkg: remove redundant multiple_providers option and also remove redundant familiar_revision pointer from the pkg struct git-svn-id: http://opkg.googlecode.com/svn/trunk@118 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'libopkg/opkg_conf.c') diff --git a/libopkg/opkg_conf.c b/libopkg/opkg_conf.c index 75ca48b..ba0daf5 100644 --- a/libopkg/opkg_conf.c +++ b/libopkg/opkg_conf.c @@ -53,7 +53,6 @@ int opkg_init_options_array(const opkg_conf_t *conf, opkg_option_t **options) { "force_space", OPKG_OPT_TYPE_BOOL, &conf->force_space }, { "ftp_proxy", OPKG_OPT_TYPE_STRING, &conf->ftp_proxy }, { "http_proxy", OPKG_OPT_TYPE_STRING, &conf->http_proxy }, - { "multiple_providers", OPKG_OPT_TYPE_BOOL, &conf->multiple_providers }, { "no_proxy", OPKG_OPT_TYPE_STRING, &conf->no_proxy }, { "test", OPKG_OPT_TYPE_INT, &conf->noaction }, { "noaction", OPKG_OPT_TYPE_INT, &conf->noaction }, @@ -145,7 +144,6 @@ int opkg_conf_init(opkg_conf_t *conf, const args_t *args) conf->offline_root = NULL; conf->offline_root_pre_script_cmd = NULL; conf->offline_root_post_script_cmd = NULL; - conf->multiple_providers = 0; conf->verbosity = 1; conf->noaction = 0; @@ -264,9 +262,6 @@ int opkg_conf_init(opkg_conf_t *conf, const args_t *args) if (args->query_all) { conf->query_all = 1; } - if (args->multiple_providers) { - conf->multiple_providers = 1; - } if (args->verbosity != conf->verbosity) { conf->verbosity = args->verbosity; } -- cgit v0.9.1