743651
From b2d1e74852c2ea4cb6d7cb02d771aebf34c77864 Mon Sep 17 00:00:00 2001
743651
From: Sumit Bose <sbose@redhat.com>
743651
Date: Wed, 24 Aug 2016 15:37:41 +0200
743651
Subject: [PATCH 1/2] Remove upper-case only check when looking for the NetBIOS
743651
 name
743651
743651
It is a convention to use only upper-case letters for NetBIOS names but
743651
it is not enforced on the AD-side. With the new option to specify a
743651
random NetBIOS name it is possible to create host entries in AD with
743651
lower-case letters in the name. To properly determine the name from the
743651
keytab the upper-case check should be dropped,dc=
743651
---
743651
 library/adenroll.c | 2 +-
743651
 1 file changed, 1 insertion(+), 1 deletion(-)
743651
743651
diff --git a/library/adenroll.c b/library/adenroll.c
743651
index a15e4be..d1020e9 100644
743651
--- a/library/adenroll.c
743651
+++ b/library/adenroll.c
743651
@@ -1309,7 +1309,7 @@ load_keytab_entry (krb5_context k5,
743651
 	if (!enroll->host_fqdn_explicit && !enroll->computer_name_explicit) {
743651
 
743651
 		/* Automatically use the netbios name */
743651
-		if (!enroll->computer_name && len > 1 && _adcli_str_is_up (name) &&
743651
+		if (!enroll->computer_name && len > 1 &&
743651
 		    _adcli_str_has_suffix (name, "$") && !strchr (name, '/')) {
743651
 			enroll->computer_name = name;
743651
 			name[len - 1] = '\0';
743651
-- 
743651
2.7.4
743651