summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-14 23:19:26 (EST)
committer ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-14 23:19:26 (EST)
commitc930268b850e90686eee25b9379a1e854fca1abc (patch)
treed393ac52e2a46428b654ddd6181f4b12fea7db81
parent19fbc4d6da1cc3f83c54a48815ad029d3d5d0f6f (diff)
opkg: don't print "Successfully terminated." message
git-svn-id: http://opkg.googlecode.com/svn/trunk@16 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
-rw-r--r--opkg_cmd.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/opkg_cmd.c b/opkg_cmd.c
index 4e70eeb..f32aa47 100644
--- a/opkg_cmd.c
+++ b/opkg_cmd.c
@@ -153,12 +153,11 @@ int opkg_cmd_exec(opkg_cmd_t *cmd, opkg_conf_t *conf, int argc, const char **arg
result = (cmd->fun)(conf, argc, argv);
- if ( result == 0 ) {
- opkg_message(conf, OPKG_NOTICE, "Successfully terminated.\n");
- } else {
- opkg_message(conf, OPKG_NOTICE, "An error ocurred, return value: %d.\n", result);
+ if ( result != 0 ) {
+ opkg_message(conf, OPKG_NOTICE, "An error ocurred, return value: %d.\n", result);
}
+
if ( error_list ) {
reverse_error_list(&error_list);