From 1e79f06390ac23fed2f15f443beaf99b6d034a06 Mon Sep 17 00:00:00 2001 From: jmz Date: Sun, 4 Aug 1996 00:35:39 +0000 Subject: [PATCH] Suppress the messages from the server after login (ftpVerbose(ftp,0)). Errors are already correctly reported. --- usr.bin/fetch/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.bin/fetch/main.c b/usr.bin/fetch/main.c index 769077255c92..4cb2966af933 100644 --- a/usr.bin/fetch/main.c +++ b/usr.bin/fetch/main.c @@ -24,7 +24,7 @@ * SUCH DAMAGE. */ -/* $Id: main.c,v 1.10 1996/07/18 00:08:58 jkh Exp $ */ +/* $Id: main.c,v 1.11 1996/08/03 13:14:47 jkh Exp $ */ #include #include @@ -226,6 +226,8 @@ ftpget () if (!ftp) err(1, "Couldn't open FTP connection or login to %s.", host); + ftpVerbose (ftp, 0); + /* Time to set our defaults */ ftpBinary (ftp); ftpPassive (ftp, passive_mode);