diff options
Diffstat (limited to 'usr.bin/ftp/main.c')
-rw-r--r-- | usr.bin/ftp/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c index fd7b1a1d227..06ad4563251 100644 --- a/usr.bin/ftp/main.c +++ b/usr.bin/ftp/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.105 2015/11/04 17:54:06 jca Exp $ */ +/* $OpenBSD: main.c,v 1.106 2016/03/16 15:41:11 krw Exp $ */ /* $NetBSD: main.c,v 1.24 1997/08/18 10:20:26 lukem Exp $ */ /* @@ -852,7 +852,7 @@ OUT: default: break; } - return ((char *)0); + return (NULL); } /* @@ -887,7 +887,7 @@ help(int argc, char *argv[]) c = getcmd(arg); if (c == (struct cmd *)-1) fprintf(ttyout, "?Ambiguous help command %s\n", arg); - else if (c == (struct cmd *)0) + else if (c == NULL) fprintf(ttyout, "?Invalid help command %s\n", arg); else fprintf(ttyout, "%-*s\t%s\n", HELPINDENT, |