All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] (5/17) ddp -- size_t for send/recvmsg
@ 2004-01-09 21:44 Stephen Hemminger
  2004-01-08 22:05 ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 2+ messages in thread
From: Stephen Hemminger @ 2004-01-09 21:44 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, acme

Change send/recvmsg to match prototype change in sock.h

diff -Nru a/net/appletalk/ddp.c b/net/appletalk/ddp.c
--- a/net/appletalk/ddp.c	Mon Dec  8 16:19:43 2003
+++ b/net/appletalk/ddp.c	Mon Dec  8 16:19:43 2003
@@ -1552,7 +1552,7 @@
 }
 
 static int atalk_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
-			 int len)
+			 size_t len)
 {
 	struct sock *sk = sock->sk;
 	struct atalk_sock *at = at_sk(sk);
@@ -1712,7 +1712,7 @@
 }
 
 static int atalk_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
-			 int size, int flags)
+			 size_t size, int flags)
 {
 	struct sock *sk = sock->sk;
 	struct sockaddr_at *sat = (struct sockaddr_at *)msg->msg_name;

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-01-09 21:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-01-09 21:44 [PATCH] (5/17) ddp -- size_t for send/recvmsg Stephen Hemminger
2004-01-08 22:05 ` Arnaldo Carvalho de Melo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.