From 0bd158c53f4f2fdfbcd9cbd1809644d1af87621d Mon Sep 17 00:00:00 2001 From: zacheiss Date: Mon, 29 Jan 2007 18:13:18 +0000 Subject: [PATCH] Don't truncate FQDN we got back from mr_host in the krb5 auth case. --- lib/mr_auth.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/mr_auth.c b/lib/mr_auth.c index 9c7641bb..5a222ad5 100644 --- a/lib/mr_auth.c +++ b/lib/mr_auth.c @@ -110,13 +110,6 @@ int mr_krb5_auth(char *prog) if ((problem = mr_host(host, sizeof(host) - 1))) return problem; - for (p = host; *p && *p != '.'; p++) - { - if (isupper(*p)) - *p = tolower(*p); - } - *p = '\0'; - if (!context) { problem = krb5_init_context(&context); -- 2.45.1