summaryrefslogtreecommitdiff
path: root/Userland/Utilities/nc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/nc.cpp')
-rw-r--r--Userland/Utilities/nc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Utilities/nc.cpp b/Userland/Utilities/nc.cpp
index 6d51312e5c..858bbed77d 100644
--- a/Userland/Utilities/nc.cpp
+++ b/Userland/Utilities/nc.cpp
@@ -82,7 +82,8 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
auto nread = TRY(Core::System::read(STDIN_FILENO, buffer_span));
buffer_span = buffer_span.trim(nread);
- TRY(socket->write({ buffer_span.data(), static_cast<size_t>(nread) }));
+ // FIXME: This should write the entire span.
+ TRY(socket->write_some({ buffer_span.data(), static_cast<size_t>(nread) }));
}
}