From cce95aa087a4535501de74632052333afa977d45 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Wed, 17 Feb 2010 23:55:43 +0100 Subject: [PATCH] Missing arguments in function call --- contrib/sockets/sockets.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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."))))