aboutsummaryrefslogtreecommitdiffstats
path: root/net/unix/af_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/unix/af_unix.c')
-rw-r--r--net/unix/af_unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index 800ca61758ff..29fc8bee9702 100644
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -1450,7 +1450,7 @@ static int unix_dgram_sendmsg(struct kiocb *kiocb, struct socket *sock,
1450 struct sock *sk = sock->sk; 1450 struct sock *sk = sock->sk;
1451 struct net *net = sock_net(sk); 1451 struct net *net = sock_net(sk);
1452 struct unix_sock *u = unix_sk(sk); 1452 struct unix_sock *u = unix_sk(sk);
1453 struct sockaddr_un *sunaddr = msg->msg_name; 1453 DECLARE_SOCKADDR(struct sockaddr_un *, sunaddr, msg->msg_name);
1454 struct sock *other = NULL; 1454 struct sock *other = NULL;
1455 int namelen = 0; /* fake GCC */ 1455 int namelen = 0; /* fake GCC */
1456 int err; 1456 int err;
@@ -1912,7 +1912,7 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock,
1912 struct scm_cookie tmp_scm; 1912 struct scm_cookie tmp_scm;
1913 struct sock *sk = sock->sk; 1913 struct sock *sk = sock->sk;
1914 struct unix_sock *u = unix_sk(sk); 1914 struct unix_sock *u = unix_sk(sk);
1915 struct sockaddr_un *sunaddr = msg->msg_name; 1915 DECLARE_SOCKADDR(struct sockaddr_un *, sunaddr, msg->msg_name);
1916 int copied = 0; 1916 int copied = 0;
1917 int check_creds = 0; 1917 int check_creds = 0;
1918 int target; 1918 int target;