]> granicus.if.org Git - curl/commitdiff
ftpserver.pl: Corrected response code for successful RCPT command
authorSteve Holme <steve_holme@hotmail.com>
Sun, 22 Sep 2013 11:59:28 +0000 (12:59 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Sun, 22 Sep 2013 11:59:28 +0000 (12:59 +0100)
tests/ftpserver.pl

index 2120c852650c3ec29f66ff4558a26c9483bf313c..36e47571ae7c49025ff59b88e92362e3974687e7 100755 (executable)
@@ -824,7 +824,7 @@ sub RCPT_smtp {
     else {
         $smtp_rcpt = $1;
 
-        sendcontrol "200 Receivers accepted\r\n";
+        sendcontrol "250 Recipient OK\r\n";
     }
 
     return 0;