Fix debug build failure on CentOS 6
The build failed due to a comparison between signed and unsigned integers.
This commit is contained in:
@ -180,7 +180,7 @@ int PamInstance::load_users(SERVICE* service)
|
|||||||
"ON (u.user = t.user AND u.host = t.host) WHERE u.plugin = 'pam' "
|
"ON (u.user = t.user AND u.host = t.host) WHERE u.plugin = 'pam' "
|
||||||
"ORDER BY user";
|
"ORDER BY user";
|
||||||
#if defined(SS_DEBUG)
|
#if defined(SS_DEBUG)
|
||||||
const int PAM_USERS_QUERY_NUM_FIELDS = 5;
|
const unsigned int PAM_USERS_QUERY_NUM_FIELDS = 5;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
char *user, *pw;
|
char *user, *pw;
|
||||||
|
Reference in New Issue
Block a user