[N_SE-41860] fix the bug of SetCurrentTime.
authorHokwon Song <hokwon.song@samsung.com>
Wed, 19 Jun 2013 05:34:58 +0000 (14:34 +0900)
committerHokwon Song <hokwon.song@samsung.com>
Wed, 19 Jun 2013 05:34:58 +0000 (14:34 +0900)
Change-Id: I15aa304bc62a0eb106c064b358a28cdee70aac06
Signed-off-by: Hokwon Song <hokwon.song@samsung.com>
src/FSys_SystemService.cpp

index d211303..7158b3d 100644 (file)
@@ -302,6 +302,7 @@ _SystemService::OnRequestOccured(AppId appId, int pid, ArrayList* request, Array
                        {
                                int millisecond = 0;
                                sscanf(datetime, "%3d %2d %2d %2d:%2d:%2d:%3d", &(tTime.tm_year), &(tTime.tm_mon), &(tTime.tm_mday), &(tTime.tm_hour), &(tTime.tm_min), &(tTime.tm_sec), &millisecond);
+                               tTime.tm_isdst = -1;
                                time_t _tTime = mktime(&tTime);
                                timeval _requestTimeVal;
                                _requestTimeVal.tv_sec = _tTime;