diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-08-29 22:52:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-08-29 22:52:01 +0000 |
commit | 7fc70e5c88b8d4a6bf8203625e2b06209ca6c994 (patch) | |
tree | 446f689224c1d822f4e8f7ab5c46761a410fa460 /libexec/ftpd/ftpd.c | |
parent | e0a0ea4ece3adaab1f643228fffbf1f67c6f46c0 (diff) |
remove extra arg; jmegq@post.harvard.edu
Diffstat (limited to 'libexec/ftpd/ftpd.c')
-rw-r--r-- | libexec/ftpd/ftpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index a9845446c41..1d878adc012 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ftpd.c,v 1.135 2002/08/20 18:18:55 deraadt Exp $ */ +/* $OpenBSD: ftpd.c,v 1.136 2002/08/29 22:52:00 deraadt Exp $ */ /* $NetBSD: ftpd.c,v 1.15 1995/06/03 22:46:47 mycroft Exp $ */ /* @@ -74,7 +74,7 @@ static const char copyright[] = static const char sccsid[] = "@(#)ftpd.c 8.4 (Berkeley) 4/16/94"; #else static const char rcsid[] = - "$OpenBSD: ftpd.c,v 1.135 2002/08/20 18:18:55 deraadt Exp $"; + "$OpenBSD: ftpd.c,v 1.136 2002/08/29 22:52:00 deraadt Exp $"; #endif #endif /* not lint */ @@ -1778,7 +1778,7 @@ statcmd() char hbuf[MAXHOSTNAMELEN]; int ispassive; - lreply(211, "%s FTP server status:", hostname, version); + lreply(211, "%s FTP server status:", hostname); printf(" %s\r\n", version); getnameinfo((struct sockaddr *)&his_addr, his_addr.su_len, hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST); |