diff options
| author | Steve Holme <steve_holme@hotmail.com> | 2013-09-07 23:20:08 +0100 | 
|---|---|---|
| committer | Steve Holme <steve_holme@hotmail.com> | 2013-09-08 02:48:34 +0100 | 
| commit | 56abdd07e7eef6dd0c075bc765aa8fb608427194 (patch) | |
| tree | 658488f7afc05bf8456e60a1c6e10e2ecfb44f82 | |
| parent | 7e06c336d691a18e193e2204ef97dacd8131acdb (diff) | |
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.
| -rwxr-xr-x | tests/ftpserver.pl | 6 | 
1 files changed, 3 insertions, 3 deletions
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!',  | 
