diff options
author | David Krause <david@cvs.openbsd.org> | 2004-03-20 23:20:21 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2004-03-20 23:20:21 +0000 |
commit | dcc3f9809583ffd05dd0bb0b4dfc10c41ed39067 (patch) | |
tree | 91426cddc14ef90010ce9b5a6b2e88a7b6b253a9 | |
parent | 71b8586f8868e18fac1012c1ed2180dfde4e4654 (diff) |
spelling fix; ok dhartmei@ henning@ deraadt@
-rw-r--r-- | sbin/pfctl/parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index 3530d2d37d5..bcfd8a3dc95 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.448 2004/03/14 21:51:44 dhartmei Exp $ */ +/* $OpenBSD: parse.y,v 1.449 2004/03/20 23:20:20 david Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -1549,7 +1549,7 @@ pfrule : action dir logquick interface route af proto fromto if (srctrack) { yyerror("state option " "'source-track' " - "multiple definitons"); + "multiple definitions"); YYERROR; } srctrack = o->data.src_track; @@ -1590,7 +1590,7 @@ pfrule : action dir logquick interface route af proto fromto case PF_STATE_OPT_STATELOCK: if (statelock) { yyerror("state locking option: " - "multiple definitons"); + "multiple definitions"); YYERROR; } statelock = 1; |