mirror of
https://github.com/curl/curl.git
synced 2026-04-24 03:22:13 +03:00
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.
This commit is contained in:
parent
7e06c336d6
commit
56abdd07e7
1 changed files with 3 additions and 3 deletions
|
|
@ -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!',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue