summaryrefslogtreecommitdiff
path: root/slirp
diff options
context:
space:
mode:
authorVincent Palatin <vpalatin@chromium.org>2011-03-02 17:25:01 -0500
committerBlue Swirl <blauwirbel@gmail.com>2011-03-05 12:00:51 +0000
commit24ac3a7d4eacea38d514dbf50baa845e5bc6840b (patch)
treeb9dfee507fe42a67281df873930bb4dddd191e70 /slirp
parent4e6557124c2b48725d092fded67e71f0bf78415f (diff)
downloadqemu-24ac3a7d4eacea38d514dbf50baa845e5bc6840b.tar.gz
net: fix trace when debug is activated in slirp
make the code compile correctly when DEBUG is activated. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'slirp')
-rw-r--r--slirp/bootp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp/bootp.c b/slirp/bootp.c
index 0905c6d1be..1eb2ed1143 100644
--- a/slirp/bootp.c
+++ b/slirp/bootp.c
@@ -284,7 +284,7 @@ static void bootp_reply(Slirp *slirp, const struct bootp_t *bp)
} else {
static const char nak_msg[] = "requested address not available";
- DPRINTF("nak'ed addr=%08x\n", ntohl(preq_addr->s_addr));
+ DPRINTF("nak'ed addr=%08x\n", ntohl(preq_addr.s_addr));
*q++ = RFC2132_MSG_TYPE;
*q++ = 1;