diff options
author | Vincent Palatin <vpalatin@chromium.org> | 2011-03-02 17:25:01 -0500 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-03-05 12:00:51 +0000 |
commit | 24ac3a7d4eacea38d514dbf50baa845e5bc6840b (patch) | |
tree | b9dfee507fe42a67281df873930bb4dddd191e70 /slirp/bootp.c | |
parent | 4e6557124c2b48725d092fded67e71f0bf78415f (diff) |
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/bootp.c')
-rw-r--r-- | slirp/bootp.c | 2 |
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; |