qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Typo : fix recv and recvfrom syscalls in user emula


From: Raphaël Rigo
Subject: [Qemu-devel] [PATCH] Typo : fix recv and recvfrom syscalls in user emulation
Date: Fri, 16 Mar 2007 13:46:28 +0100
User-agent: Icedove 1.5.0.10 (X11/20070307)

Trivial patch following

Regards,
Raphaël Rigo

===================================================================
RCS file: /sources/qemu/qemu/linux-user/syscall.c,v
retrieving revision 1.89
diff -u -r1.89 syscall.c
--- linux-user/syscall.c        2 Mar 2007 20:47:59 -0000       1.89
+++ linux-user/syscall.c        16 Mar 2007 12:43:15 -0000
@@ -2914,12 +2914,12 @@
 #endif
 #ifdef TARGET_NR_recv
     case TARGET_NR_recv:
-        ret = do_recvfrom(arg1, arg1, arg3, arg4, 0, 0);
+        ret = do_recvfrom(arg1, arg2, arg3, arg4, 0, 0);
         break;
 #endif
 #ifdef TARGET_NR_recvfrom
     case TARGET_NR_recvfrom:
-        ret = do_recvfrom(arg1, arg1, arg3, arg4, arg5, arg6);
+        ret = do_recvfrom(arg1, arg2, arg3, arg4, arg5, arg6);
         break;
 #endif
 #ifdef TARGET_NR_recvmsg




reply via email to

[Prev in Thread] Current Thread [Next in Thread]