summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1998-07-27 15:11:06 +0000
committermycroft <mycroft@NetBSD.org>1998-07-27 15:11:06 +0000
commit2e9ada3aff0262eeccd31c14785148d805d5b8fc (patch)
treefe83fbedae40d365e782b15a5c58e612e27ba45b /libexec
parent4c3784857eab103a360d52d2668f7c95cd72c561 (diff)
const propagation.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/identd/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/identd/parse.c b/libexec/identd/parse.c
index 82b99ddcb42..56c558f70e9 100644
--- a/libexec/identd/parse.c
+++ b/libexec/identd/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.10 1998/07/26 19:47:06 mycroft Exp $ */
+/* $NetBSD: parse.c,v 1.11 1998/07/27 15:11:06 mycroft Exp $ */
/*
** parse.c This file contains the protocol parser
@@ -630,7 +630,7 @@ int parse(fp, laddr, faddr)
if (format_flag)
{
char *cp;
- const char *const *gmp;
+ __aconst char *__aconst *gmp;
int bp;
char buff[512];
for (cp = format, bp = 0; *cp != 0; cp++)