diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-17 20:40:41 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-17 20:40:41 +0000 |
commit | dd85ef8bec96516bd0e181204725133d3ae9cce5 (patch) | |
tree | 3455c4cec12a337eb6d8ffd5adfa063f36b458be /usr.bin | |
parent | 64a7571cd74e994f847ded7faaec8696a83b465f (diff) |
(foo *)NULL -> NULL
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ftp/ftp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/ftp/ftp.c b/usr.bin/ftp/ftp.c index 8a4d968f63d..03fe620ae39 100644 --- a/usr.bin/ftp/ftp.c +++ b/usr.bin/ftp/ftp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ftp.c,v 1.18 1997/04/23 20:33:13 deraadt Exp $ */ +/* $OpenBSD: ftp.c,v 1.19 1997/06/17 20:40:40 kstailey Exp $ */ /* $NetBSD: ftp.c,v 1.25 1997/04/14 09:09:22 lukem Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)ftp.c 8.6 (Berkeley) 10/27/94"; #else -static char rcsid[] = "$OpenBSD: ftp.c,v 1.18 1997/04/23 20:33:13 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: ftp.c,v 1.19 1997/06/17 20:40:40 kstailey Exp $"; #endif #endif /* not lint */ @@ -1410,7 +1410,7 @@ abort: if (command("%s %s", cmd2, local) != PRELIM) { pswitch(0); if (cpend) - abort_remote((FILE *) NULL); + abort_remote(NULL); } pswitch(1); if (ptabflg) @@ -1419,13 +1419,13 @@ abort: return; } if (cpend) - abort_remote((FILE *) NULL); + abort_remote(NULL); pswitch(!proxy); if (!cpend && !secndflag) { /* only if cmd = "RETR" (proxy=1) */ if (command("%s %s", cmd2, local) != PRELIM) { pswitch(0); if (cpend) - abort_remote((FILE *) NULL); + abort_remote(NULL); pswitch(1); if (ptabflg) code = -1; @@ -1434,7 +1434,7 @@ abort: } } if (cpend) - abort_remote((FILE *) NULL); + abort_remote(NULL); pswitch(!proxy); if (cpend) { FD_ZERO(&mask); |