diff options
author | David S. Miller <davem@davemloft.net> | 2005-08-14 21:01:08 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 19:00:24 -0400 |
commit | 7de76272b54e3677bcd247d1e1809015236a298d (patch) | |
tree | 0d497d40143c3a4f02456c57820d946f8de31d09 /net/ipx/af_ipx.c | |
parent | a10cedd4b905236603c6c4fd77cf338ebbfb1a60 (diff) |
[IPX]: Fix build error in ipx_recvmsg()
Missing semicolon introduced by skb->stamp changeset:
d3258b7d8ed96f97032639bc745179f1951b0da5
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipx/af_ipx.c')
-rw-r--r-- | net/ipx/af_ipx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipx/af_ipx.c b/net/ipx/af_ipx.c index c54f8acc97eb..180e383f707c 100644 --- a/net/ipx/af_ipx.c +++ b/net/ipx/af_ipx.c | |||
@@ -1797,7 +1797,7 @@ static int ipx_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
1797 | if (rc) | 1797 | if (rc) |
1798 | goto out_free; | 1798 | goto out_free; |
1799 | if (skb->tstamp.off_sec) | 1799 | if (skb->tstamp.off_sec) |
1800 | skb_get_timestamp(skb, &sk->sk_stamp) | 1800 | skb_get_timestamp(skb, &sk->sk_stamp); |
1801 | 1801 | ||
1802 | msg->msg_namelen = sizeof(*sipx); | 1802 | msg->msg_namelen = sizeof(*sipx); |
1803 | 1803 | ||