diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-08-25 00:56:14 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-08-25 14:22:43 +0200 |
commit | 2fbbddbe855d551a5acb5d9c514efba18c924c6e (patch) | |
tree | dbcf5f66bf352472abf2351aff49a9dee91593af /tests/ftp.pm | |
parent | ecb3fe63d782dafcd6bacf834f964414b087a793 (diff) | |
download | curl-2fbbddbe855d551a5acb5d9c514efba18c924c6e.tar.gz |
gopher tests: revert parts of gopher in the pingpong server
Introduced in the initial gopher commits, there was added logic to do
GOPHER test serving in the pingpong server but as it resembles HTTP much
more than FTP or SMTP, the gopher testing has been moved over to instead
use the sws (HTTP) server. This change simply removes unused code.
Diffstat (limited to 'tests/ftp.pm')
-rw-r--r-- | tests/ftp.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ftp.pm b/tests/ftp.pm index 535075ac5..6a46e7651 100644 --- a/tests/ftp.pm +++ b/tests/ftp.pm @@ -181,7 +181,7 @@ sub killsockfilters { my $pidfile; my $pid; - return if($proto !~ /^(ftp|imap|pop3|smtp|gopher)$/); + return if($proto !~ /^(ftp|imap|pop3|smtp)$/); die "unsupported sockfilter: $which" if($which && ($which !~ /^(main|data)$/)); |