From 03cc26dda4cb59207fea3dd4fd1fa4608746739c Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 17 Oct 2013 01:03:39 +0200 Subject: timedated: expose time and NTP sync flag via the bus This way, timedatectl can be run over the network and determine all properties correctly from the server rather than the client. --- src/timedate/timedatectl.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src/timedate/timedatectl.c') diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c index 141180c393..80afc57131 100644 --- a/src/timedate/timedatectl.c +++ b/src/timedate/timedatectl.c @@ -72,18 +72,6 @@ typedef struct StatusInfo { bool can_ntp; } StatusInfo; -static bool ntp_synced(void) { - struct timex txc = {}; - - if (adjtimex(&txc) < 0) - return false; - - if (txc.status & STA_UNSYNC) - return false; - - return true; -} - static const char *jump_str(int delta_minutes, char *s, size_t size) { if (delta_minutes == 60) return "one hour forward"; -- cgit v1.2.3-54-g00ecf