diff --git a/src/usr.sbin/ntpd/parse.y b/src/usr.sbin/ntpd/parse.y index 8405f861..4838f255 100644 --- a/src/usr.sbin/ntpd/parse.y +++ b/src/usr.sbin/ntpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.28 2006/05/28 20:39:16 henning Exp $ */ +/* $OpenBSD: parse.y,v 1.29 2006/06/01 06:06:59 otto Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer @@ -30,6 +30,7 @@ #include #include #include +#include #include #include @@ -208,7 +209,7 @@ number : STRING { u_long ulval; const char *errstr; - ulval = strtonum($1, 0, ULONG_MAX, &errstr); + ulval = strtonum($1, 0, LONG_MAX, &errstr); if (errstr) { yyerror("\"%s\" invalid: %s", $1, errstr); free($1);