summaryrefslogtreecommitdiffstats
path: root/bin/csh/csh.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1999-02-21 08:28:00 +0000
committerderaadt <deraadt@openbsd.org>1999-02-21 08:28:00 +0000
commit769a90634f61285fd433c3f3d0fe0d9eb135e2d3 (patch)
tree6d4a3716fd9c3dc1a72c96e42ba34b41701f6b0f /bin/csh/csh.c
parentsplit ipintr() to create new ipv4_input() for tunnels; NRL (diff)
downloadwireguard-openbsd-769a90634f61285fd433c3f3d0fe0d9eb135e2d3.tar.xz
wireguard-openbsd-769a90634f61285fd433c3f3d0fe0d9eb135e2d3.zip
NUL not NULL
Diffstat (limited to 'bin/csh/csh.c')
-rw-r--r--bin/csh/csh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/csh/csh.c b/bin/csh/csh.c
index c08d353af76..8d5046461f7 100644
--- a/bin/csh/csh.c
+++ b/bin/csh/csh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: csh.c,v 1.9 1997/11/15 21:51:27 todd Exp $ */
+/* $OpenBSD: csh.c,v 1.10 1999/02/21 08:28:00 deraadt Exp $ */
/* $NetBSD: csh.c,v 1.14 1995/04/29 23:21:28 mycroft Exp $ */
/*-
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)csh.c 8.2 (Berkeley) 10/12/93";
#else
-static char rcsid[] = "$OpenBSD: csh.c,v 1.9 1997/11/15 21:51:27 todd Exp $";
+static char rcsid[] = "$OpenBSD: csh.c,v 1.10 1999/02/21 08:28:00 deraadt Exp $";
#endif
#endif /* not lint */
@@ -1288,7 +1288,7 @@ vis_fputc(ch, fp)
int ch;
FILE *fp;
{
- char uenc[5]; /* 4 + NULL */
+ char uenc[5]; /* 4 + NUL */
if (ch & QUOTE)
return fputc(ch & TRIM, fp);