From 868cbd739052719d5e0580a0fda6101dada1ce1e Mon Sep 17 00:00:00 2001 From: ticktock35 Date: Mon, 15 Dec 2008 04:22:05 +0000 Subject: [PATCH] opkg: correct the name of the state changed callback and run it when appropriate git-svn-id: http://opkg.googlecode.com/svn/trunk@32 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- opkg_state.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/opkg_state.c b/opkg_state.c index 3dbd6c6..2cc8594 100644 --- a/opkg_state.c +++ b/opkg_state.c @@ -33,7 +33,7 @@ static char *state_strings[] = -opkg_state_changed_callback opkg_cb_state; +opkg_state_changed_callback opkg_cb_state_changed = NULL; static opkg_state_t opkg_state = 0; static char *opkg_state_data = NULL; @@ -55,6 +55,12 @@ opkg_set_current_state (opkg_state_t state, const char *data) opkg_state = state; + if (opkg_cb_state_changed) + { + opkg_cb_state_changed (opkg_state, opkg_state_data); + } + + printf ("opkg state set to %s: %s\n", state_strings[state], data); } -- 2.25.1