From d0bd9195f04ae0f45c2e571d31625b31347f13e9 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 31 Jul 2008 23:15:35 +0200 Subject: [PATCH] libnet keytab: use proper counter type (uint32_t) in libnet_keytab_add(). Michael --- source/libnet/libnet_keytab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libnet/libnet_keytab.c b/source/libnet/libnet_keytab.c index b427e879c32..230a4a21f87 100644 --- a/source/libnet/libnet_keytab.c +++ b/source/libnet/libnet_keytab.c @@ -261,7 +261,7 @@ done: krb5_error_code libnet_keytab_add(struct libnet_keytab_context *ctx) { krb5_error_code ret = 0; - int i; + uint32_t i; for (i=0; icount; i++) { -- 2.47.3