renamed chunk

This commit is contained in:
Andreas Steffen 2009-01-09 08:51:41 +00:00
parent 88db1fa3b4
commit 40d9388037

View File

@ -108,9 +108,9 @@ static status_t netlink_send(private_netlink_socket_t *this, struct nlmsghdr *in
if (this->protocol == NETLINK_XFRM)
{
chunk_t hdr = { (u_char*)in, in->nlmsg_len };
chunk_t in_chunk = { (u_char*)in, in->nlmsg_len };
DBG3(DBG_KNL, "sending %N: %B", xfrm_msg_names, in->nlmsg_type, &hdr);
DBG3(DBG_KNL, "sending %N: %B", xfrm_msg_names, in->nlmsg_type, &in_chunk);
}
while (TRUE)