(do_request): print size_t's correctly

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10508 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-08-21 10:10:25 +00:00
parent b5fb7b8372
commit ec8233054e

View File

@@ -420,7 +420,8 @@ do_request(void *buf, size_t len, int sendlength,
ret = process_request(buf, len, &reply, &sendlength,
d->addr_string, d->sa);
if(reply.length){
kdc_log(5, "sending %d bytes to %s", reply.length, d->addr_string);
kdc_log(5, "sending %lu bytes to %s", (unsigned long)reply.length,
d->addr_string);
if(sendlength){
unsigned char len[4];
len[0] = (reply.length >> 24) & 0xff;