aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2019-03-25 19:16:28 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-03-25 19:16:28 +0100
commit55bcefbc5673c2327c9efbd3ad78d31811acb5be (patch)
tree04989c8d00cab64b218e98a5a967d542b9431059 /src
parentb0bd05a7246a147ab4c262ae6660a9cd30dd29c7 (diff)
downloadlibssh-55bcefbc5673c2327c9efbd3ad78d31811acb5be.tar.gz
libssh-55bcefbc5673c2327c9efbd3ad78d31811acb5be.tar.xz
libssh-55bcefbc5673c2327c9efbd3ad78d31811acb5be.zip
config: Use size_t instead of u_int
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'src')
-rw-r--r--src/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c
index e45f35ff..85ecd96a 100644
--- a/src/config.c
+++ b/src/config.c
@@ -329,7 +329,7 @@ static void local_parse_glob(ssh_session session,
.gl_flags = 0,
};
int rt;
- u_int i;
+ size_t i;
rt = glob(fileglob, GLOB_TILDE, NULL, &globbuf);
if (rt == GLOB_NOMATCH) {