chiark / gitweb /
timedated: expose time and NTP sync flag via the bus
[elogind.git] / src / timedate / timedatectl.c
index 141180c3937d561e4e121233a32445c1999964f3..80afc57131b68c0b295dffcd2767306654bb8df5 100644 (file)
@@ -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";