diff --git a/interface/lib/classes/remote.d/dns.inc.php b/interface/lib/classes/remote.d/dns.inc.php
index 36180ace3e19469aa120062a1fd0b90d50de8226..612adf71861d69dedcf95a7ecbb785844a2ea41d 100644
--- a/interface/lib/classes/remote.d/dns.inc.php
+++ b/interface/lib/classes/remote.d/dns.inc.php
@@ -429,22 +429,22 @@ class remoting_dns extends remoting {
 	// ----------------------------------------------------------------------------------------------------------------
 
 	//* Get record details
-	public function dns_cname_get($session_id, $primary_id) {
+	public function dns_caa_get($session_id, $primary_id) {
 		return $this->dns_rr_get($session_id, $primary_id, 'CAA');
 	}
 
 	//* Add a record
-	public function dns_cname_add($session_id, $client_id, $params, $update_serial=false) {
+	public function dns_caa_add($session_id, $client_id, $params, $update_serial=false) {
 		return $this->dns_rr_add($session_id, $client_id, $params, $update_serial, 'CAA');
 	}
 
 	//* Update a record
-	public function dns_cname_update($session_id, $client_id, $primary_id, $params, $update_serial=false) {
+	public function dns_caa_update($session_id, $client_id, $primary_id, $params, $update_serial=false) {
 		return $this->dns_rr_update($session_id, $client_id, $primary_id, $params, $update_serial, 'CAA');
 	}
 
 	//* Delete a record
-	public function dns_cname_delete($session_id, $primary_id, $update_serial=false) {
+	public function dns_caa_delete($session_id, $primary_id, $update_serial=false) {
 		return $this->dns_rr_delete($session_id, $primary_id, $update_serial, 'CAA');
 	}