fix: message protocol in ACL.pm

This commit is contained in:
TomRicci 2024-10-17 14:45:33 +02:00 committed by Stéphane Lesimple
parent 529a1325d5
commit dc27e041a0

View file

@ -27,7 +27,7 @@ sub check {
}
if (!grep { $protocol eq $_ } qw{ scpupload scpdownload sftp rsync }) {
return R('ERR_INVALID_PARAMETER',
msg => "The protocol '$protocol' is not supported, expected either scpup, scpdown, sftp or rsync");
msg => "The protocol '$protocol' is not supported, expected either scpupload, scpdownload, sftp or rsync");
}
}