Fix svace issue (WGID 308150) 42/191042/1 accepted/tizen/unified/20181107.081831 submit/tizen/20181106.050612
authorsinikang <sinikang@samsung.com>
Thu, 11 Oct 2018 02:08:28 +0000 (11:08 +0900)
committersinikang <sinikang@samsung.com>
Thu, 11 Oct 2018 02:08:28 +0000 (11:08 +0900)
Change-Id: I98ba5a2577d2e501d60d55c3da4d66a425bb1ce7

packaging/tel-plugin-nitz.spec
src/time_update.c

index bdc469b..b4fb1f1 100644 (file)
@@ -3,7 +3,7 @@
 
 %define major 0
 %define minor 1
-%define patchlevel 79
+%define patchlevel 80
 
 Name:       tel-plugin-nitz
 Summary:    nitz plugin for telephony
index 9b2d744..e6b2105 100644 (file)
@@ -330,6 +330,7 @@ GList * nitz_get_tzlist(char *iso)
 
                cal = ucal_open(timezone_id, u_strlen(timezone_id), uloc_getDefault(), UCAL_TRADITIONAL, &ec);
                in_dst = ucal_inDaylightTime(cal, &ec);
+               in_dst = (in_dst == 1) ? 1 : 0;
                offset = ucal_get(cal, UCAL_ZONE_OFFSET, &ec);
                offset_hash = (offset/1800000) + 24;
                ucal_close(cal);