From: jbasney Date: Tue, 6 Sep 2005 03:27:54 +0000 (+0000) Subject: fix compiler warning on incorrect type signedness X-Git-Tag: OPENSSH_4_2P1_GSSAPI_20050905~2 X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/commitdiff_plain/97a8553ec4360f7b772dcf35ec77059a2bf0431d fix compiler warning on incorrect type signedness --- diff --git a/openssh/monitor.c b/openssh/monitor.c index 98dd49b..7a6e463 100644 --- a/openssh/monitor.c +++ b/openssh/monitor.c @@ -2021,7 +2021,7 @@ int mm_answer_gss_indicate_mechs(int socket, Buffer *m) { OM_uint32 major,minor; gss_OID_set mech_set; - int i; + size_t i; major=gss_indicate_mechs(&minor, &mech_set);