1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2025-01-31 16:52:19 +01:00

change int to size_t

This commit is contained in:
Klas Lindfors 2015-03-30 15:24:28 +02:00
parent c2a6b9c948
commit fe8eb203d9

2
util.c
View File

@ -62,7 +62,7 @@ get_user_cfgfile_path(const char *common_path, const char *filename, const char
*/
struct passwd *p;
char *userfile;
int len;
size_t len;
if (common_path != NULL) {
len = strlen(common_path) + 1 + strlen(filename) + 1;