From dc27e041a0d49ad9cd94db2d1b0dadbd07681999 Mon Sep 17 00:00:00 2001 From: TomRicci <44097104+TomRicci@users.noreply.github.com> Date: Thu, 17 Oct 2024 14:45:33 +0200 Subject: [PATCH] fix: message protocol in ACL.pm --- lib/perl/OVH/Bastion/Plugin/ACL.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/perl/OVH/Bastion/Plugin/ACL.pm b/lib/perl/OVH/Bastion/Plugin/ACL.pm index 9be5ee4..86aa16f 100644 --- a/lib/perl/OVH/Bastion/Plugin/ACL.pm +++ b/lib/perl/OVH/Bastion/Plugin/ACL.pm @@ -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"); } }