diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-03-28 20:37:30 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-03-28 20:37:30 +0000 |
commit | 4146315c96ec2805827900e5c118eb3e15d1ce8e (patch) | |
tree | aa7b306c41e1eb6f7f8439fb04cb3f7936c4a5a5 /sbin | |
parent | 8fdf22d269f70e215c26701f6ade925db26098b0 (diff) |
one more const was missing
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pfctl/pfctl_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl_parser.c b/sbin/pfctl/pfctl_parser.c index 4cbf19a7548..a9595a775a5 100644 --- a/sbin/pfctl/pfctl_parser.c +++ b/sbin/pfctl/pfctl_parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_parser.c,v 1.147 2003/03/27 18:01:57 henning Exp $ */ +/* $OpenBSD: pfctl_parser.c,v 1.148 2003/03/28 20:37:29 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -67,7 +67,7 @@ struct node_host *host_v4(const char *, int); struct node_host *host_v6(const char *, int); struct node_host *host_dns(const char *, int, int); -char *tcpflags = "FSRPAUEW"; +const char *tcpflags = "FSRPAUEW"; static const struct icmptypeent icmp_type[] = { { "echoreq", ICMP_ECHO }, |