Blame SOURCES/nss-pam-ldapd-0.8.12-str-cmp.patch

09a3f6
diff -up nss-pam-ldapd-0.8.13/nslcd/pam.c.str_cmp nss-pam-ldapd-0.8.13/nslcd/pam.c
09a3f6
--- nss-pam-ldapd-0.8.13/nslcd/pam.c.str_cmp	2017-10-23 21:18:19.867943857 +0200
09a3f6
+++ nss-pam-ldapd-0.8.13/nslcd/pam.c	2017-10-23 21:18:35.935986527 +0200
09a3f6
@@ -133,7 +133,7 @@ static void update_username(MYLDAP_ENTRY
09a3f6
     return;
09a3f6
   }
09a3f6
   /* check if the username is different and update it if needed */
09a3f6
-  if (strcmp(username,value)!=0)
09a3f6
+  if (STR_CMP(username,value)!=0)
09a3f6
   {
09a3f6
     log_log(LOG_INFO,"username changed from \"%s\" to \"%s\"",username,value);
09a3f6
     strcpy(username,value);