Skip to content

Commit

Permalink
[IPX]: Fix build error in ipx_recvmsg()
Browse files Browse the repository at this point in the history
Missing semicolon introduced by skb->stamp changeset:
d3258b7d8ed96f97032639bc745179f1951b0da5

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller authored and David S. Miller committed Aug 29, 2005
1 parent a10cedd commit 7de7627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipx/af_ipx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1797,7 +1797,7 @@ static int ipx_recvmsg(struct kiocb *iocb, struct socket *sock,
if (rc)
goto out_free;
if (skb->tstamp.off_sec)
skb_get_timestamp(skb, &sk->sk_stamp)
skb_get_timestamp(skb, &sk->sk_stamp);

msg->msg_namelen = sizeof(*sipx);

Expand Down

0 comments on commit 7de7627

Please sign in to comment.