From 5e073d60a331b505b00eea1284a60faf62313598 Mon Sep 17 00:00:00 2001 From: joerg Date: Fri, 7 Nov 1997 00:07:27 +0000 Subject: Teach tzsetup to understand blank lines in the iso3166 file. Found by: evanc@synapse.net (Evan Champion) --- usr.sbin/tzsetup/tzsetup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/tzsetup/tzsetup.c') diff --git a/usr.sbin/tzsetup/tzsetup.c b/usr.sbin/tzsetup/tzsetup.c index da8d9ee..d3bd449 100644 --- a/usr.sbin/tzsetup/tzsetup.c +++ b/usr.sbin/tzsetup/tzsetup.c @@ -34,7 +34,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$Id: tzsetup.c,v 1.8 1997/10/27 07:49:47 charnier Exp $"; #endif /* not lint */ #include @@ -189,7 +189,7 @@ read_iso3166_table(void) if (s[len - 1] != '\n') errx(1, _PATH_ISO3166 ":%d: invalid format", lineno); s[len - 1] = '\0'; - if (s[0] == '#') + if (s[0] == '#' || strspn(s, " \t") == len - 1) continue; /* Isolate the two-letter code. */ -- cgit v1.1