diff --git a/contrib/sockets/sockets.lisp b/contrib/sockets/sockets.lisp index 6f9f55fc9..2235a3d01 100755 --- a/contrib/sockets/sockets.lisp +++ b/contrib/sockets/sockets.lisp @@ -1208,9 +1208,9 @@ also known as unix-domain sockets.")) (auto-close-two-way-stream stream) stream)) (input - (make-stream-from-fd fd #-wsock :input #+wsock :input-wsock)) + (make-stream-from-fd fd #-wsock :input #+wsock :input-wsock buffering)) (output - (make-stream-from-fd fd #-wsock :output #+wsock :output-wsock)) + (make-stream-from-fd fd #-wsock :output #+wsock :output-wsock buffering)) (t (error "SOCKET-MAKE-STREAM: at least one of :INPUT or :OUTPUT has to be true."))))