qemu-devel
[Top][All Lists]
Advanced

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

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


From: Kirill A. Shutemov
Subject: Re: [Qemu-devel] [PATCH] Typo : fix recv and recvfrom syscalls in user emulation
Date: Fri, 16 Mar 2007 17:25:50 +0200
User-agent: Mutt/1.5.13 (2006-08-11)

On [Fri, 16.03.2007 13:46], Raphaël Rigo wrote:
> 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

I have posted same patch(and a few other) more then week ago, but it
hasn't commit yet.

Attachment: signature.asc
Description: Digital signature


reply via email to

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