summaryrefslogtreecommitdiff
path: root/sbin/dhclient/parse.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2005-07-16 16:19:24 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2005-07-16 16:19:24 +0000
commita87b612a23b1c095de7c2b5147a20df141183b36 (patch)
tree6e6a53166c59144a3099728ca5960e521e2760d0 /sbin/dhclient/parse.c
parent6b4cd68c66d670cd149dac8234b53038ca89fd3e (diff)
NULL is not a time_t. From brooks at freebsd.
Diffstat (limited to 'sbin/dhclient/parse.c')
-rw-r--r--sbin/dhclient/parse.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/sbin/dhclient/parse.c b/sbin/dhclient/parse.c
index e8870bc12ae..d1ef80b267f 100644
--- a/sbin/dhclient/parse.c
+++ b/sbin/dhclient/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.11 2004/05/05 23:07:47 deraadt Exp $ */
+/* $OpenBSD: parse.c,v 1.12 2005/07/16 16:19:23 krw Exp $ */
/* Common parser code for dhcpd and dhclient. */
@@ -437,7 +437,7 @@ parse_date(FILE *cfile)
parse_warn("numeric day of week expected.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
tm.tm_wday = atoi(val);
@@ -447,7 +447,7 @@ parse_date(FILE *cfile)
parse_warn("numeric year expected.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
tm.tm_year = atoi(val);
if (tm.tm_year > 1900)
@@ -459,7 +459,7 @@ parse_date(FILE *cfile)
parse_warn("expected slash separating year from month.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
/* Month... */
@@ -468,7 +468,7 @@ parse_date(FILE *cfile)
parse_warn("numeric month expected.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
tm.tm_mon = atoi(val) - 1;
@@ -478,7 +478,7 @@ parse_date(FILE *cfile)
parse_warn("expected slash separating month from day.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
/* Month... */
@@ -487,7 +487,7 @@ parse_date(FILE *cfile)
parse_warn("numeric day of month expected.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
tm.tm_mday = atoi(val);
@@ -497,7 +497,7 @@ parse_date(FILE *cfile)
parse_warn("numeric hour expected.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
tm.tm_hour = atoi(val);
@@ -507,7 +507,7 @@ parse_date(FILE *cfile)
parse_warn("expected colon separating hour from minute.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
/* Minute... */
@@ -516,7 +516,7 @@ parse_date(FILE *cfile)
parse_warn("numeric minute expected.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
tm.tm_min = atoi(val);
@@ -526,7 +526,7 @@ parse_date(FILE *cfile)
parse_warn("expected colon separating hour from minute.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
/* Minute... */
@@ -535,7 +535,7 @@ parse_date(FILE *cfile)
parse_warn("numeric minute expected.");
if (token != SEMI)
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
tm.tm_sec = atoi(val);
tm.tm_isdst = 0;
@@ -548,7 +548,7 @@ parse_date(FILE *cfile)
if (token != SEMI) {
parse_warn("semicolon expected.");
skip_to_semi(cfile);
- return (NULL);
+ return (0);
}
/* Guess the time value... */