summaryrefslogtreecommitdiff
path: root/modules/pam_group
diff options
context:
space:
mode:
authorTomas Mraz <tm@t8m.info>2008-12-01 11:26:59 +0000
committerTomas Mraz <tm@t8m.info>2008-12-01 11:26:59 +0000
commit1395ff30321ce605ab2ca79b1301cd93f51a5ca1 (patch)
tree817f4cb6862aece7c12edef26af84c172c7d8562 /modules/pam_group
parente7ce957e4efd094cdfaac8908cc95042b47260a3 (diff)
Relevant BUGIDs:
Purpose of commit: bugfix Commit summary: --------------- 2008-12-01 Tomas Mraz <t8m@centrum.cz> * modules/pam_access/pam_access.8.xml: Fix description of nodefgroup option. * modules/pam_group/pam_group.c (is_same): Fix check for correct string length.
Diffstat (limited to 'modules/pam_group')
-rw-r--r--modules/pam_group/pam_group.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/pam_group/pam_group.c b/modules/pam_group/pam_group.c
index bddcf1cb..4a931c4f 100644
--- a/modules/pam_group/pam_group.c
+++ b/modules/pam_group/pam_group.c
@@ -331,10 +331,10 @@ is_same (const pam_handle_t *pamh UNUSED,
}
/* Ok, we know that b is a substring from A and does not contain
- wildcards, but now the length of both strings must be the same,
- too. */
- if (strlen (a) != strlen(b))
- return FALSE;
+ wildcards, but now the length of both strings must be the same,
+ too. In this case it means, a[i] has to be the end of the string. */
+ if (a[i] != '\0')
+ return FALSE;
return ( !len );
}