about summary refs log tree commit diff
path: root/src/network/shutdown.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/shutdown.c')
-rw-r--r--src/network/shutdown.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/network/shutdown.c b/src/network/shutdown.c
index 91950c8a..10ca21aa 100644
--- a/src/network/shutdown.c
+++ b/src/network/shutdown.c
@@ -1,9 +1,7 @@
 #include <sys/socket.h>
 #include "syscall.h"
-#include "socketcall.h"
 
 int shutdown(int fd, int how)
 {
-	unsigned long args[] = { fd, how };
-	return syscall2(__NR_socketcall, SYS_SHUTDOWN, (long)args);
+	return socketcall(shutdown, fd, how, 0, 0, 0, 0);
 }