diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-02-10 11:46:40 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-02-10 11:46:40 +0000 |
commit | 04d01288f87064bae00cff4f713a3dbd207b0017 (patch) | |
tree | 9edb7e9ab3c36be0946a197a56498abc742d0526 /usr.sbin/ntpd/parse.y | |
parent | dff585e17ff45cc1b698ba9f6e359fe98a4cc087 (diff) |
spacing
Diffstat (limited to 'usr.sbin/ntpd/parse.y')
-rw-r--r-- | usr.sbin/ntpd/parse.y | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/ntpd/parse.y b/usr.sbin/ntpd/parse.y index 49432fc33fc..01c35234454 100644 --- a/usr.sbin/ntpd/parse.y +++ b/usr.sbin/ntpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.58 2015/02/10 06:40:08 reyk Exp $ */ +/* $OpenBSD: parse.y,v 1.59 2015/02/10 11:46:39 reyk Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -423,7 +423,8 @@ weight : WEIGHT NUMBER { } rtable : RTABLE NUMBER { if ($2 < 0 || $2 > RT_TABLEID_MAX) { - yyerror("rtable must be between 1 and RT_TABLEID_MAX"); + yyerror("rtable must be between 1" + " and RT_TABLEID_MAX"); YYERROR; } opts.rtable = $2; |