diff options
author | ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2008-12-15 00:22:22 (EST) |
---|---|---|
committer | ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2008-12-15 00:22:22 (EST) |
commit | 726cf50379dca356e78a39a9b65a3be8558b8345 (patch) | |
tree | ad1ac4fa82d4e83a20d490d2c8c314540fa4c8cd /libopkg | |
parent | 9e85c59c8df6dd151fce6238811844d8d66ea1c0 (diff) |
opkg: Convert "multiple packages" message to NOTICE rather than ERROR
git-svn-id: http://opkg.googlecode.com/svn/trunk@131 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg')
-rw-r--r-- | libopkg/pkg_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/pkg_hash.c b/libopkg/pkg_hash.c index a276628..97613e5 100644 --- a/libopkg/pkg_hash.c +++ b/libopkg/pkg_hash.c @@ -297,7 +297,7 @@ pkg_t *pkg_hash_fetch_best_installation_candidate(opkg_conf_t *conf, abstract_pk latest_installed_parent = matching; if (matching->state_flag & (SF_HOLD|SF_PREFER)) { if (held_pkg) - opkg_message(conf, OPKG_ERROR, "Multiple packages (%s and %s) providing same name marked HOLD or PREFER. Using latest.\n", + opkg_message(conf, OPKG_NOTICE, "Multiple packages (%s and %s) providing same name marked HOLD or PREFER. Using latest.\n", held_pkg->name, matching->name); held_pkg = matching; } |