From bba87747033eb457833ae30f884af1f25f60a585 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Tue, 11 Feb 2014 10:57:41 +0100 Subject: [PATCH] recv.2: Improve text describing recvfrom() call that is equivalent to recv() Signed-off-by: Michael Kerrisk --- man2/recv.2 | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/man2/recv.2 b/man2/recv.2 index 1a588175f..1b06a1067 100644 --- a/man2/recv.2 +++ b/man2/recv.2 @@ -289,12 +289,10 @@ The call is normally used only on a .I connected socket (see -.BR connect (2)) -and is identical to -.BR recvfrom () -with a NULL -.I src_addr -argument. +.BR connect (2)). +It is equivalent to the call: + + recvfrom(fd, buf, len, flags, NULL, 0)); .\" .SS recvmsg() The