remove nack() - missed in previous work

This commit is contained in:
lukem 1998-09-07 08:15:25 +00:00
parent 29ed71b169
commit 701e7ebd99
2 changed files with 3 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: extern.h,v 1.12 1998/09/07 08:11:20 lukem Exp $ */
/* $NetBSD: extern.h,v 1.13 1998/09/07 08:15:25 lukem Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -49,7 +49,6 @@ char *getline __P((char *, int, FILE *));
void logwtmp __P((const char *, const char *, const char *));
void lreply __P((int, const char *, ...));
void makedir __P((char *));
void nack __P((char *));
void parse_conf __P((char *));
void pass __P((char *));
void passive __P((void));

View File

@ -1,4 +1,4 @@
/* $NetBSD: ftpd.c,v 1.58 1998/09/07 08:11:20 lukem Exp $ */
/* $NetBSD: ftpd.c,v 1.59 1998/09/07 08:15:25 lukem Exp $ */
/*
* Copyright (c) 1985, 1988, 1990, 1992, 1993, 1994
@ -44,7 +44,7 @@ __COPYRIGHT(
#if 0
static char sccsid[] = "@(#)ftpd.c 8.5 (Berkeley) 4/28/95";
#else
__RCSID("$NetBSD: ftpd.c,v 1.58 1998/09/07 08:11:20 lukem Exp $");
__RCSID("$NetBSD: ftpd.c,v 1.59 1998/09/07 08:15:25 lukem Exp $");
#endif
#endif /* not lint */
@ -1424,14 +1424,6 @@ ack(s)
reply(250, "%s command successful.", s);
}
void
nack(s)
char *s;
{
reply(502, "%s command not implemented.", s);
}
void
delete(name)
char *name;