aboutsummaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2022-10-28 01:17:59 +0100
committerubq323 <ubq323@ubq323.website>2022-10-28 01:17:59 +0100
commitc524506e04927a39648d47ba55af4fdff32faab6 (patch)
tree94fb88c53b7b1530753872277ec8f3d2caaa8161 /util.c
parent7a17c3a4ea869a04041ff2568fd02ec676ab8dff (diff)
horrible makefile tricks, making the buffer thing actually buffer the buffers bufferously, properly, also fix typos
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index c545724..3c51df7 100644
--- a/util.c
+++ b/util.c
@@ -13,5 +13,5 @@ ssize_t sendall(int sockfd, void *buf, size_t len) {
total_sent += sent;
} while (total_sent < len);
DPn("SEND",buf,len);
- return total_sent;
+ return 0;
}