From 701e7ebd99d4c71a3edb2e087e9ba7c64146d330 Mon Sep 17 00:00:00 2001 From: lukem Date: Mon, 7 Sep 1998 08:15:25 +0000 Subject: [PATCH] remove nack() - missed in previous work --- libexec/ftpd/extern.h | 3 +-- libexec/ftpd/ftpd.c | 12 ++---------- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/libexec/ftpd/extern.h b/libexec/ftpd/extern.h index de402a48a5b7..8d68980929e8 100644 --- a/libexec/ftpd/extern.h +++ b/libexec/ftpd/extern.h @@ -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)); diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index 93d7f6af9fc2..d4b3fa07ede0 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -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;