]> andersk Git - moira.git/commitdiff
s/strcmp/strcasecmp/ in ldap_domain string comparison.
authorzacheiss <zacheiss>
Tue, 27 Jul 2004 16:11:18 +0000 (16:11 +0000)
committerzacheiss <zacheiss>
Tue, 27 Jul 2004 16:11:18 +0000 (16:11 +0000)
incremental/winad/winad.c

index e8cf5990d813dae724b95284f2dded6deaec12e0..9f3fc66551612b0c98e865b59c469194c46087d5 100755 (executable)
@@ -6002,7 +6002,7 @@ int tickets_get_k5()
     if (strlen(PrincipalName) == 0)
     {
         strcpy(PrincipalName, PRODUCTION_PRINCIPAL);
-        if (strcmp(ldap_domain, PRIMARY_DOMAIN))
+        if (strcasecmp(ldap_domain, PRIMARY_DOMAIN))
             strcpy(PrincipalName, TEST_PRINCIPAL);
     }
 
This page took 0.058504 seconds and 5 git commands to generate.