diff options
author | 2003-11-10 22:35:07 +0000 | |
---|---|---|
committer | 2003-11-10 22:35:07 +0000 | |
commit | 6ad74f2c2dd96235cd5abb4d7925ddfb4a6e19f9 (patch) | |
tree | a13ec83b2f9b1d4b301fc27d23395ff56dd0252a | |
parent | typos are my friend. (diff) | |
download | wireguard-openbsd-6ad74f2c2dd96235cd5abb4d7925ddfb4a6e19f9.tar.xz wireguard-openbsd-6ad74f2c2dd96235cd5abb4d7925ddfb4a6e19f9.zip |
c2 cannot be const as it produces all kinds of conflicts
-rw-r--r-- | usr.bin/apply/apply.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/apply/apply.c b/usr.bin/apply/apply.c index 91ce1ee0494..64de2c02a37 100644 --- a/usr.bin/apply/apply.c +++ b/usr.bin/apply/apply.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apply.c,v 1.16 2003/09/26 21:26:05 tedu Exp $ */ +/* $OpenBSD: apply.c,v 1.17 2003/11/10 22:35:07 mickey Exp $ */ /* $NetBSD: apply.c,v 1.3 1995/03/25 03:38:23 glass Exp $ */ /*- @@ -35,9 +35,9 @@ #ifndef lint #if 0 -static char sccsid[] = "@(#)apply.c 8.4 (Berkeley) 4/4/94"; +static const char sccsid[] = "@(#)apply.c 8.4 (Berkeley) 4/4/94"; #else -static char rcsid[] = "$OpenBSD: apply.c,v 1.16 2003/09/26 21:26:05 tedu Exp $"; +static const char rcsid[] = "$OpenBSD: apply.c,v 1.17 2003/11/10 22:35:07 mickey Exp $"; #endif #endif /* not lint */ @@ -59,8 +59,7 @@ int main(int argc, char *argv[]) { int ch, clen, debug, i, l, magic, n, nargs, rval; - char *c, *cmd, *p, *q; - const char *c2; + char *c, *c2, *cmd, *p, *q; size_t len; debug = 0; |