net: Fix wrong sizeof
Which is why I have always preferred sizeof(struct foo) over sizeof(var). Signed-off-by: Jean Delvare <khali@linux-fr.org> Acked-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
42324c6270
commit
b607bd9000
@@ -495,7 +495,7 @@ static void veth_take_cap_ack(struct veth_lpar_connection *cnx,
|
||||
cnx->remote_lp);
|
||||
} else {
|
||||
memcpy(&cnx->cap_ack_event, event,
|
||||
sizeof(&cnx->cap_ack_event));
|
||||
sizeof(cnx->cap_ack_event));
|
||||
cnx->state |= VETH_STATE_GOTCAPACK;
|
||||
veth_kick_statemachine(cnx);
|
||||
}
|
||||
|
Reference in New Issue
Block a user