summaryrefslogtreecommitdiff
path: root/sbin/ipsecctl
diff options
context:
space:
mode:
authorHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2006-04-20 09:03:24 +0000
committerHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2006-04-20 09:03:24 +0000
commita576c8a2e51e4f8c4b163aca875c98c4f67118c8 (patch)
tree0d5a71a4a2806616af6339f02b6e976259025b75 /sbin/ipsecctl
parentd1031c77c409b1d95764b5579f80b83b0e6c3b44 (diff)
constify char *infile here, too. noticed by lint.
Diffstat (limited to 'sbin/ipsecctl')
-rw-r--r--sbin/ipsecctl/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ipsecctl/parse.y b/sbin/ipsecctl/parse.y
index e66f1ca1b8f..69fed2fa5c0 100644
--- a/sbin/ipsecctl/parse.y
+++ b/sbin/ipsecctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.62 2006/04/19 17:28:28 hshoexer Exp $ */
+/* $OpenBSD: parse.y,v 1.63 2006/04/20 09:03:23 hshoexer Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -709,7 +709,7 @@ int
yyerror(const char *fmt, ...)
{
va_list ap;
- extern char *infile;
+ extern const char *infile;
errors = 1;
va_start(ap, fmt);