From: Seonah Moon Date: Wed, 5 Apr 2017 01:17:46 +0000 (+0900) Subject: Bug fix: remove unused signal X-Git-Tag: accepted/tizen/unified/20170406.173415^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=977652da47e2a7a3fe42af57ff30d020c2716869;hp=491a6f022a3cac364bb518aed732473166443d71;p=platform%2Fcore%2Fapi%2Ftethering.git Bug fix: remove unused signal Change-Id: I9a9006cc4ccd8fdd4e796becdff0af41a5a3bc61 Signed-off-by: Seonah Moon --- diff --git a/include/tethering_private.h b/include/tethering_private.h index f13abdc..bab9c79 100644 --- a/include/tethering_private.h +++ b/include/tethering_private.h @@ -177,7 +177,6 @@ typedef enum { E_SIGNAL_NO_DATA_TIMEOUT, E_SIGNAL_LOW_BATTERY_MODE, E_SIGNAL_FLIGHT_MODE, - E_SIGNAL_POWER_SAVE_MODE, E_SIGNAL_SECURITY_TYPE_CHANGED, E_SIGNAL_SSID_VISIBILITY_CHANGED, E_SIGNAL_PASSPHRASE_CHANGED, diff --git a/packaging/capi-network-tethering.spec b/packaging/capi-network-tethering.spec index 04dbbdf..2b3507a 100644 --- a/packaging/capi-network-tethering.spec +++ b/packaging/capi-network-tethering.spec @@ -1,6 +1,6 @@ Name: capi-network-tethering Summary: Tethering Framework -Version: 1.0.46 +Version: 1.0.47 Release: 1 Group: System/Network License: Apache-2.0 diff --git a/src/tethering.c b/src/tethering.c index c541c29..2f577de 100755 --- a/src/tethering.c +++ b/src/tethering.c @@ -125,8 +125,7 @@ static __tethering_sig_t sigs[] = { {0, SIGNAL_NAME_SECURITY_TYPE_CHANGED, __handle_security_type_changed}, {0, SIGNAL_NAME_SSID_VISIBILITY_CHANGED, __handle_ssid_visibility_changed}, {0, SIGNAL_NAME_PASSPHRASE_CHANGED, __handle_passphrase_changed}, - {0, SIGNAL_NAME_DHCP_STATUS, __handle_dhcp}, - {0, "", NULL} }; + {0, SIGNAL_NAME_DHCP_STATUS, __handle_dhcp} }; static int retry = 0;