From 7e7d4da22925c329d668334aec3b3e7f21f63bc3 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 17 Apr 2013 08:28:41 +0200 Subject: timedated: fixed NTP enabled: n/a --- src/timedate/timedated.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/timedate') diff --git a/src/timedate/timedated.c b/src/timedate/timedated.c index 4efa806c39..bb134b7fff 100644 --- a/src/timedate/timedated.c +++ b/src/timedate/timedated.c @@ -90,6 +90,8 @@ typedef struct TZ { } TZ; static TZ tz = { + .zone = NULL, + .local_rtc = false, .can_ntp = -1, .use_ntp = -1, }; @@ -303,9 +305,10 @@ static char** get_ntp_services(void) { if (l[0] == 0 || l[0] == '#') continue; - if (strv_extend(&r, l) < 0) + if (strv_extend(&r, l) < 0) { log_oom(); - return NULL; + return NULL; + } } } -- cgit v1.2.3-54-g00ecf