From: Fabian Grünbichler Date: Tue, 7 Mar 2023 10:51:15 +0000 (+0100) Subject: certificate: add check_ prefix to cert/key match helper X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=commitdiff_plain;h=60a05ecd883173862339d420ffc92bfe41c46646 certificate: add check_ prefix to cert/key match helper Signed-off-by: Fabian Grünbichler --- diff --git a/src/PVE/Certificate.pm b/src/PVE/Certificate.pm index 73091ff..4fbda80 100644 --- a/src/PVE/Certificate.pm +++ b/src/PVE/Certificate.pm @@ -228,7 +228,7 @@ sub get_certificate_fingerprint { return $fp; } -sub certificate_matches_key { +sub check_certificate_matches_key { my ($cert_path, $key_path) = @_; die "No certificate path given!\n" if !$cert_path;