diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-04-28 12:39:12 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-28 14:19:45 +0200 |
commit | aa792062cbb0d39092948a7e71fad59737c4ac66 (patch) | |
tree | 09ff716195ccdaa7771f7188d2c9c77fd2183946 /Ports/libassuan | |
parent | c841012f569dba4fa72e9eb8989bb847be4535bc (diff) | |
download | serenity-aa792062cbb0d39092948a7e71fad59737c4ac66.zip |
Kernel+LibC: Implement the socketpair() syscall
Diffstat (limited to 'Ports/libassuan')
-rw-r--r-- | Ports/libassuan/patches/socketpair.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Ports/libassuan/patches/socketpair.patch b/Ports/libassuan/patches/socketpair.patch deleted file mode 100644 index 61d318bac4..0000000000 --- a/Ports/libassuan/patches/socketpair.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff -Naur libassuan-2.5.5/src/system-posix.c libassuan-2.5.5.serenity/src/system-posix.c ---- libassuan-2.5.5/src/system-posix.c 2021-04-14 02:40:14.020341296 +0200 -+++ libassuan-2.5.5.serenity/src/system-posix.c 2021-04-14 02:39:56.823341349 +0200 -@@ -412,7 +412,12 @@ - __assuan_socketpair (assuan_context_t ctx, int namespace, int style, - int protocol, assuan_fd_t filedes[2]) - { -+#ifndef __serenity__ - return socketpair (namespace, style, protocol, filedes); -+#else -+ errno = ENOTSUP; -+ return -1; -+#endif - } - - |