printf() and htonl() type matching issue
commit982c1f2697f6051be22dfaf9311c6ab3eae44f91
authorH. Peter Anvin <hpa@zytor.com>
Tue, 9 Jan 2007 00:30:10 +0000 (8 16:30 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Tue, 9 Jan 2007 00:30:10 +0000 (8 16:30 -0800)
treecfa6177c41f91b078bb3b5fa2d7ab630b9badb05
parentab12c128ff11db82d7865a99b6ab994cbcb95249
printf() and htonl() type matching issue

On older systems, htonl() returns unsigned long, on newer systems it
returns uint32_t.  Cast to unsigned long and use %08lX for the format,
that seems to be the easiest solution.
tftpd/tftpd.c