Removed superfluous check of the return value of

ext:create-inet-listener.
This commit is contained in:
2000-10-09 22:02:28 +00:00
parent e4c22e732c
commit 0a61c9d69a

View File

@ -87,7 +87,6 @@
#+MP #+MP
(defun http-listener (port server) (defun http-listener (port server)
(let ((fd (ext:create-inet-listener port))) (let ((fd (ext:create-inet-listener port)))
(unless fd (error "Cannot bind port ~D." port))
(unwind-protect (unwind-protect
(progn (progn
(setf (process-name *current-process*) (setf (process-name *current-process*)
@ -128,3 +127,4 @@
#+MP #+MP
(defun initialize-clash (&optional (idle-process mp::*initial-process*)) (defun initialize-clash (&optional (idle-process mp::*initial-process*))
(setf mp::*idle-process* idle-process)) (setf mp::*idle-process* idle-process))