summaryrefslogtreecommitdiff
path: root/Userland/Utilities/test-bindtodevice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/test-bindtodevice.cpp')
-rw-r--r--Userland/Utilities/test-bindtodevice.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Utilities/test-bindtodevice.cpp b/Userland/Utilities/test-bindtodevice.cpp
index d0e6ddbe9c..990098496c 100644
--- a/Userland/Utilities/test-bindtodevice.cpp
+++ b/Userland/Utilities/test-bindtodevice.cpp
@@ -107,7 +107,8 @@ void test_send(int fd)
// bind to an interface that cannot deliver
char buf[IFNAMSIZ];
socklen_t buflen = IFNAMSIZ;
- memcpy(buf, "e1k0", 5);
+ // FIXME: Look up the proper device name instead of hard-coding it
+ memcpy(buf, "ep0s7", 6);
if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, buf, buflen) < 0) {
perror("setsockopt(SO_BINDTODEVICE) :: send");