From 134d8319c92436efa2e581e62d5ad4e8e1ef1d18 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 31 Jul 2008 23:15:35 +0200 Subject: libnet keytab: use proper counter type (uint32_t) in libnet_keytab_add(). Michael (This used to be commit d0bd9195f04ae0f45c2e571d31625b31347f13e9) --- source3/libnet/libnet_keytab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/libnet/libnet_keytab.c b/source3/libnet/libnet_keytab.c index b427e879c3..230a4a21f8 100644 --- a/source3/libnet/libnet_keytab.c +++ b/source3/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++) { -- cgit