(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:
		@@ -420,7 +420,8 @@ do_request(void *buf, size_t len, int sendlength,
 | 
				
			|||||||
    ret = process_request(buf, len, &reply, &sendlength,
 | 
					    ret = process_request(buf, len, &reply, &sendlength,
 | 
				
			||||||
			  d->addr_string, d->sa);
 | 
								  d->addr_string, d->sa);
 | 
				
			||||||
    if(reply.length){
 | 
					    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){
 | 
						if(sendlength){
 | 
				
			||||||
	    unsigned char len[4];
 | 
						    unsigned char len[4];
 | 
				
			||||||
	    len[0] = (reply.length >> 24) & 0xff;
 | 
						    len[0] = (reply.length >> 24) & 0xff;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user