summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2011-06-05 08:58:35 +0000
committerArthur de Jong <arthur@arthurdejong.org>2011-06-05 08:58:35 +0000
commitceb7626c048fd72d0c3d9c663dd7c7f2d66338d0 (patch)
tree52a3bbde9207de51a59d7fb051633920a8c05914
parentba84a2d8de5f48aecc036acd145fa7cc92589643 (diff)
fix r1468
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1470 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r--nslcd/myldap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nslcd/myldap.c b/nslcd/myldap.c
index 233c595..e3230ea 100644
--- a/nslcd/myldap.c
+++ b/nslcd/myldap.c
@@ -1448,13 +1448,13 @@ static const char *find_rdn_value(char **exploded_rdn,const char *attr)
continue;
j=l;
/* skip spaces */
- while (isspace(exploded_rdn[i][j]) j++;
+ while (isspace(exploded_rdn[i][j])) j++;
/* ensure that we found an equals sign now */
if (exploded_rdn[i][j]!='=')
continue;
j++;
/* skip more spaces */
- while (isspace(exploded_rdn[i][j]) j++;
+ while (isspace(exploded_rdn[i][j])) j++;
/* ensure that we're not at the end of the string */
if (exploded_rdn[i][j]=='\0')
continue;