Merge "[Improvement]:Pass the same received RSSI from supplicant to Application.... accepted/tizen/unified/20170710.154658 submit/tizen/20170710.074033 submit/tizen/20170710.074100
authortaesub kim <taesub.kim@samsung.com>
Mon, 10 Jul 2017 00:45:00 +0000 (00:45 +0000)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Mon, 10 Jul 2017 00:45:00 +0000 (00:45 +0000)
plugins/wifi.c

index 7b416fc..fd046e9 100755 (executable)
@@ -2907,9 +2907,11 @@ static unsigned char calculate_strength(GSupplicantNetwork *supplicant_network)
        unsigned char strength;
 
        strength = 120 + g_supplicant_network_get_signal(supplicant_network);
+
+#if !defined TIZEN_EXT
        if (strength > 100)
                strength = 100;
-
+#endif
        return strength;
 }