summaryrefslogtreecommitdiff
path: root/tests/ftpserver.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-11-07 10:36:23 +0100
committerDaniel Stenberg <daniel@haxx.se>2016-11-07 10:36:23 +0100
commit27302abb9467f21a481fcc6b8eca53d34e04373b (patch)
treeaac900406c50dfd139fe48d7d6168555fdeed87e /tests/ftpserver.pl
parent0269f6446de2e16eab272f9a6e37eec861035ea7 (diff)
downloadgnurl-27302abb9467f21a481fcc6b8eca53d34e04373b.tar.gz
gnurl-27302abb9467f21a481fcc6b8eca53d34e04373b.tar.bz2
gnurl-27302abb9467f21a481fcc6b8eca53d34e04373b.zip
s/cURL/curl
We're mostly saying just "curl" in lower case these days so here's a big cleanup to adapt to this reality. A few instances are left as the project could still formally be considered called cURL.
Diffstat (limited to 'tests/ftpserver.pl')
-rwxr-xr-xtests/ftpserver.pl10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl
index 01a7df865..081298f1b 100755
--- a/tests/ftpserver.pl
+++ b/tests/ftpserver.pl
@@ -609,7 +609,7 @@ sub protocolsetup {
' / __| | | | |_) | | '."\r\n",
' | (__| |_| | _ {| |___ '."\r\n",
' \___|\___/|_| \_\_____|'."\r\n",
- '+OK cURL POP3 server ready to serve '."\r\n")
+ '+OK curl POP3 server ready to serve '."\r\n")
);
}
elsif($proto eq 'imap') {
@@ -643,7 +643,7 @@ sub protocolsetup {
' / __| | | | |_) | | '."\r\n",
' | (__| |_| | _ {| |___ '."\r\n",
' \___|\___/|_| \_\_____|'."\r\n",
- '* OK cURL IMAP server ready to serve'."\r\n")
+ '* OK curl IMAP server ready to serve'."\r\n")
);
}
elsif($proto eq 'smtp') {
@@ -1057,7 +1057,7 @@ sub EXPN_smtp {
}
sub QUIT_smtp {
- sendcontrol "221 cURL $smtp_type server signing off\r\n";
+ sendcontrol "221 curl $smtp_type server signing off\r\n";
return 0;
}
@@ -1605,7 +1605,7 @@ sub NOOP_imap {
}
sub LOGOUT_imap {
- sendcontrol "* BYE cURL IMAP server signing off\r\n";
+ sendcontrol "* BYE curl IMAP server signing off\r\n";
sendcontrol "$cmdid OK LOGOUT completed\r\n";
return 0;
@@ -1941,7 +1941,7 @@ sub QUIT_pop3 {
@deleted = ();
}
- sendcontrol "+OK cURL POP3 server signing off\r\n";
+ sendcontrol "+OK curl POP3 server signing off\r\n";
return 0;
}