summaryrefslogtreecommitdiff
path: root/src/timeserver.c
diff options
context:
space:
mode:
authorNiraj Kumar Goit <niraj.g@samsung.com>2016-06-07 22:33:40 +0530
committerNiraj Kumar Goit <niraj.g@samsung.com>2016-06-10 03:18:19 -0700
commit28801fe078345fde58f934bbfee79b5fb6f0d9bb (patch)
treec40ae40352643ac8ebcb1446b884197d4334d238 /src/timeserver.c
parent5b43a352de45aef79f48bd9baa555e6ec194fe78 (diff)
downloadconnman-28801fe078345fde58f934bbfee79b5fb6f0d9bb.tar.gz
connman-28801fe078345fde58f934bbfee79b5fb6f0d9bb.tar.bz2
connman-28801fe078345fde58f934bbfee79b5fb6f0d9bb.zip
[SPIN] Enable the ntp by connman if device does not use the cellular.
desc : enable the ntp if the device is not using the cellualr(telephony). This ntp is controlled by net-config. After getting the timeinfo, connman call the alarm-manager's dbus method. Change-Id: I83272206654b6b64c968d5dbb69354e19e971f34 Signed-off-by: Niraj Kumar Goit <niraj.g@samsung.com>
Diffstat (limited to 'src/timeserver.c')
-rwxr-xr-xsrc/timeserver.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/timeserver.c b/src/timeserver.c
index f0d33e5e..8b9afb13 100755
--- a/src/timeserver.c
+++ b/src/timeserver.c
@@ -290,6 +290,11 @@ static void ts_recheck_enable(void)
*/
int __connman_timeserver_sync(struct connman_service *default_service)
{
+#if defined TIZEN_EXT && !defined TIZEN_CONNMAN_NTP
+ /* Tizen updates time (ntp) by system service */
+
+ return 0;
+#endif
struct connman_service *service;
if (default_service)