diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2003-11-26 08:50:59 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2003-11-26 08:50:59 +0000 |
commit | d49298dd5398d34fe4cfd035d416c6ee126f5c95 (patch) | |
tree | cc7998d77c8571f2552d13e871219005b3975025 /modules | |
parent | d8eba606078c57e5480a82b5c1a1c9df4cf83a01 (diff) | |
download | pam-d49298dd5398d34fe4cfd035d416c6ee126f5c95.tar.gz pam-d49298dd5398d34fe4cfd035d416c6ee126f5c95.tar.bz2 pam-d49298dd5398d34fe4cfd035d416c6ee126f5c95.zip |
Relevant BUGIDs: 849498
Purpose of commit: bugfix
Commit summary:
---------------
The type of remember in support.c is int, not
long. But we compare remember with LONG_MIN
and LONG_MAX. While this works on 32bit
architectures, this fails on 64bit one.
INT_MIN and INT_MAX should be used.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/pam_unix/support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_unix/support.c b/modules/pam_unix/support.c index 5d62bfec..1b55d23b 100644 --- a/modules/pam_unix/support.c +++ b/modules/pam_unix/support.c @@ -167,7 +167,7 @@ int _set_ctrl(pam_handle_t *pamh, int flags, int *remember, int argc, if (remember != NULL) { if (j == UNIX_REMEMBER_PASSWD) { *remember = strtol(*argv + 9, NULL, 10); - if ((*remember == LONG_MIN) || (*remember == LONG_MAX)) + if ((*remember == INT_MIN) || (*remember == INT_MAX)) *remember = -1; if (*remember > 400) *remember = 400; |