diff options
-rw-r--r-- | src/providers/ldap/ldap_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c index 302cfc6b..9945b4b1 100644 --- a/src/providers/ldap/ldap_common.c +++ b/src/providers/ldap/ldap_common.c @@ -783,9 +783,9 @@ errno_t string_to_shadowpw_days(const char *s, long *d) return EINVAL; } - if (*d < -1) { + if (l < 0) { DEBUG(1, ("Input string contains not allowed negative value [%d].\n", - *d)); + l)); return EINVAL; } |