about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--092socket.mu2
1 files changed, 0 insertions, 2 deletions
diff --git a/092socket.mu b/092socket.mu
index 27d12bde..43e98f22 100644
--- a/092socket.mu
+++ b/092socket.mu
@@ -127,8 +127,6 @@ def receive-from-socket session:num, sink:&:sink:char -> sink:&:sink:char [
       done?:bool <- greater-or-equal i, bytes-read
       break-if done?
       c:char <- index *req, i
-      end-of-request?:bool <- equal c, 10/newline
-      break-if end-of-request? # To be safe, for now.
       sink <- write sink, c
       i <- add i, 1
       loop