diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 1998-09-11 08:04:25 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 1998-09-11 08:04:25 +0000 |
commit | cf8aa276243346a107683be0df4784bc24a38bde (patch) | |
tree | 429e0bdb031ef22c615c8825857abc24fc049b15 /usr.bin/ftp/fetch.c | |
parent | a6c30c1ebf841fe4b8aaa8e1d7372613870f902b (diff) |
don't display Retrieving... message unless verbose output desired
Diffstat (limited to 'usr.bin/ftp/fetch.c')
-rw-r--r-- | usr.bin/ftp/fetch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/fetch.c b/usr.bin/ftp/fetch.c index cfcf761f660..3d4c4998db2 100644 --- a/usr.bin/ftp/fetch.c +++ b/usr.bin/ftp/fetch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fetch.c,v 1.20 1998/05/13 10:46:12 deraadt Exp $ */ +/* $OpenBSD: fetch.c,v 1.21 1998/09/11 08:04:24 marc Exp $ */ /* $NetBSD: fetch.c,v 1.14 1997/08/18 10:20:20 lukem Exp $ */ /*- @@ -38,7 +38,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: fetch.c,v 1.20 1998/05/13 10:46:12 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: fetch.c,v 1.21 1998/09/11 08:04:24 marc Exp $"; #endif /* not lint */ /* @@ -639,7 +639,7 @@ parsed_url: continue; } - if (!verbose) + if (verbose) fprintf(ttyout, "Retrieving %s/%s\n", dir ? dir : "", file); if (dirhasglob) { |