summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorMike Pechkin <mpech@cvs.openbsd.org>2002-01-25 06:43:38 +0000
committerMike Pechkin <mpech@cvs.openbsd.org>2002-01-25 06:43:38 +0000
commit5dde3390038a7376039732dce96630661d6cd1aa (patch)
tree7d700a89e0944eeda85affc246ea9c6593b9d56b /libexec
parent7bd65b71f253b2c681111547dfc0d96f30083e7f (diff)
s is pointer. 0 -> NULL.
millert@ ok
Diffstat (limited to 'libexec')
-rw-r--r--libexec/ftpd/ftpcmd.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/ftpd/ftpcmd.y b/libexec/ftpd/ftpcmd.y
index 2d0ed4e460e..a5f358c6bb9 100644
--- a/libexec/ftpd/ftpcmd.y
+++ b/libexec/ftpd/ftpcmd.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: ftpcmd.y,v 1.34 2002/01/25 06:40:14 mpech Exp $ */
+/* $OpenBSD: ftpcmd.y,v 1.35 2002/01/25 06:43:37 mpech Exp $ */
/* $NetBSD: ftpcmd.y,v 1.7 1996/04/08 19:03:11 jtc Exp $ */
/*
@@ -47,7 +47,7 @@
#if 0
static char sccsid[] = "@(#)ftpcmd.y 8.3 (Berkeley) 4/6/94";
#else
-static char rcsid[] = "$OpenBSD: ftpcmd.y,v 1.34 2002/01/25 06:40:14 mpech Exp $";
+static char rcsid[] = "$OpenBSD: ftpcmd.y,v 1.35 2002/01/25 06:43:37 mpech Exp $";
#endif
#endif /* not lint */
@@ -1438,7 +1438,7 @@ help(ctab, s)
NCMDS++;
}
width = (width + 8) &~ 7;
- if (s == 0) {
+ if (s == NULL) {
int i, j, w;
int columns, lines;