config: Use size_t instead of u_int

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2019-03-25 19:16:28 +01:00
parent b0bd05a724
commit 55bcefbc56

View File

@@ -329,7 +329,7 @@ static void local_parse_glob(ssh_session session,
.gl_flags = 0, .gl_flags = 0,
}; };
int rt; int rt;
u_int i; size_t i;
rt = glob(fileglob, GLOB_TILDE, NULL, &globbuf); rt = glob(fileglob, GLOB_TILDE, NULL, &globbuf);
if (rt == GLOB_NOMATCH) { if (rt == GLOB_NOMATCH) {