X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Ftimedate%2Ftimedatectl.c;h=564f9e5f74eddd77712f0398556dfe83351cb5e2;hp=b7f2422a16ee2172318e2a70b28ebe578dc4d689;hb=e2fd5e5ba281a22886fa3797dc6265cca670448b;hpb=f18ca9dcdeda247e208f7143e834fd2fb2070d80 diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c index b7f2422a1..564f9e5f7 100644 --- a/src/timedate/timedatectl.c +++ b/src/timedate/timedatectl.c @@ -136,7 +136,9 @@ static void print_status_info(StatusInfo *i) { r = time_get_dst(sec, "/etc/localtime", &tc, &zc, &is_dstc, &tn, &zn, &is_dstn); - if (r >= 0) { + if (r < 0) + printf(" DST active: n/a\n"); + else { printf(" DST active: %s\n", yes_no(is_dstc)); t = tc - 1;