diff options
author | Mike Zeller <mike@mikezeller.net> | 2020-04-01 14:05:14 -0400 |
---|---|---|
committer | Mike Zeller <mike@mikezeller.net> | 2020-04-01 14:05:14 -0400 |
commit | 65d4ac049b4b23601b71d84e2ee991ee0eae8463 (patch) | |
tree | d611014b2f6810daf43032fca50529e69d7532a6 | |
parent | dd035614e73d1cceea865a18ca21d4a8bfb50a25 (diff) | |
download | illumos-joyent-65d4ac049b4b23601b71d84e2ee991ee0eae8463.tar.gz |
XXX Address feedback from pmooney
-rw-r--r-- | usr/src/uts/common/brand/lx/syscall/lx_socket.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/src/uts/common/brand/lx/syscall/lx_socket.c b/usr/src/uts/common/brand/lx/syscall/lx_socket.c index 905602f46b..e6eb0d7f8e 100644 --- a/usr/src/uts/common/brand/lx/syscall/lx_socket.c +++ b/usr/src/uts/common/brand/lx/syscall/lx_socket.c @@ -1403,12 +1403,11 @@ lx_socket_create(int domain, int type, int protocol, int options, file_t **fpp, int err, fd; /* - * EACCES is returned in linux when the user isn't allowed to use a + * EACCES is returned in Linux when the user isn't allowed to use a * "ping socket". EACCES is also used by the iputils-ping userland * application to determine if fallback to SOCK_RAW is necessary. * * This can be removed if we ever implement SOCK_DGRAM + IPPROTO_ICMP. - * See linux commit c319b4d76b9e583a5d88d6bf190e079c4e43213d. */ if (type == SOCK_DGRAM && (protocol == IPPROTO_ICMP || protocol == IPPROTO_ICMPV6)) |