From: Steve Holme Date: Sat, 7 Sep 2013 22:20:08 +0000 (+0100) Subject: ftpserver.pl: Reordered the POP3 handlers to be alphabetical X-Git-Tag: curl-7_33_0~142 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56abdd07e7eef6dd0c075bc765aa8fb608427194;p=curl ftpserver.pl: Reordered the POP3 handlers to be alphabetical In preparation for additional POP3 tests, re-ordered the command function defintions to be sorted alphabetically. --- diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index 990414b1a..ded0b044c 100755 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -556,11 +556,11 @@ sub protocolsetup { } elsif($proto eq 'pop3') { %commandfunc = ( - 'CAPA' => \&CAPA_pop3, 'AUTH' => \&AUTH_pop3, - 'RETR' => \&RETR_pop3, - 'LIST' => \&LIST_pop3, + 'CAPA' => \&CAPA_pop3, 'DELE' => \&DELE_pop3, + 'LIST' => \&LIST_pop3, + 'RETR' => \&RETR_pop3, ); %displaytext = ( 'USER' => '+OK We are happy you popped in!',