in backend/lispworks.lisp, the method socket-shutdown on stream-usocket currently calls
comm:socket-stream-shutdown on the socket, which is wrrong, because comm:socket-stream-shutdown expects a socket-stream. It needs to pass the stream, that is replace
(socket usocket)
by
(socket-stream usocket)
Causes two failures when running the regressions tests on LispWorks.
in backend/lispworks.lisp, the method socket-shutdown on stream-usocket currently calls
comm:socket-stream-shutdown on the socket, which is wrrong, because comm:socket-stream-shutdown expects a socket-stream. It needs to pass the stream, that is replace
(socket usocket)
by
(socket-stream usocket)
Causes two failures when running the regressions tests on LispWorks.