diff options
author | Michael Adam <obnox@samba.org> | 2008-07-31 23:15:35 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-08-01 16:07:59 +0200 |
commit | 134d8319c92436efa2e581e62d5ad4e8e1ef1d18 (patch) | |
tree | 391d9e31776f20dec567c3c55c62e1681ae4a53f /source3/libnet | |
parent | 03b6502dc69647e4410eca5bcf0f93fd5eba3fa9 (diff) | |
download | samba-134d8319c92436efa2e581e62d5ad4e8e1ef1d18.tar.gz samba-134d8319c92436efa2e581e62d5ad4e8e1ef1d18.tar.bz2 samba-134d8319c92436efa2e581e62d5ad4e8e1ef1d18.zip |
libnet keytab: use proper counter type (uint32_t) in libnet_keytab_add().
Michael
(This used to be commit d0bd9195f04ae0f45c2e571d31625b31347f13e9)
Diffstat (limited to 'source3/libnet')
-rw-r--r-- | source3/libnet/libnet_keytab.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; i<ctx->count; i++) { |