From ee5987724e01bb31c796548d5a639cdaa6d7469c Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Wed, 11 Jan 2023 15:59:19 +0100 Subject: [PATCH] Cleanup ipcipher.hh --- pdns/ipcipher.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/ipcipher.hh b/pdns/ipcipher.hh index 64037de21265..ce944e662230 100644 --- a/pdns/ipcipher.hh +++ b/pdns/ipcipher.hh @@ -7,7 +7,7 @@ // see https://powerdns.org/ipcipher #ifdef HAVE_IPCIPHER -ComboAddress encryptCA(const ComboAddress& ca, const std::string& key); -ComboAddress decryptCA(const ComboAddress& ca, const std::string& key); +ComboAddress encryptCA(const ComboAddress& address, const std::string& key); +ComboAddress decryptCA(const ComboAddress& address, const std::string& key); std::string makeIPCipherKey(const std::string& password); #endif /* HAVE_IPCIPHER */