summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/plugins/cert.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/cert.py b/ipalib/plugins/cert.py
index f446b36b5..9750de6f4 100644
--- a/ipalib/plugins/cert.py
+++ b/ipalib/plugins/cert.py
@@ -145,7 +145,7 @@ class cert_request(VirtualCommand):
if rhost is None:
raise errors.ACIError(info='DNS lookup on client failed for IP %s' % client_ip)
- client_hostname = rhost.rdata.ptrdname
+ client_hostname = rhost.rdata.ptrdname[:-1]
if subject_host.lower() != client_hostname.lower():
self.log.debug("IPA: hostname in subject of request '%s' does not match requesting hostname '%s'" % (subject_host, client_hostname))
self.check_access(operation="request certificate different host")