Skip to content
Snippets Groups Projects
Commit 38ca89ab authored by pw's avatar pw
Browse files

Fix FIND-LOGICAL-HOST to honor optional errorp argument even when

'thing' has invalid LP host syntax (and a colon character).
parent d3f857ac
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.49 2001/04/05 13:40:02 pw Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.50 2001/05/14 13:13:39 pw Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -850,7 +850,8 @@ a host-structure or string." ...@@ -850,7 +850,8 @@ a host-structure or string."
(values (or logical-host null))) (values (or logical-host null)))
(let ((colon-pos (position #\: namestr :start start :end end))) (let ((colon-pos (position #\: namestr :start start :end end)))
(if colon-pos (if colon-pos
(values (find-logical-host (nstring-upcase (subseq namestr start colon-pos)) nil)) (find-logical-host (nstring-upcase (subseq namestr start colon-pos))
nil)
nil))) nil)))
;;; PARSE-NAMESTRING -- Interface ;;; PARSE-NAMESTRING -- Interface
...@@ -1512,14 +1513,21 @@ a host-structure or string." ...@@ -1512,14 +1513,21 @@ a host-structure or string."
(defun find-logical-host (thing &optional (errorp t)) (defun find-logical-host (thing &optional (errorp t))
(etypecase thing (etypecase thing
(string (string
(let ((found (or (gethash (logical-word-or-lose thing) (let* ((valid-hostname
*logical-hosts*) (catch 'error-bailout
(handler-bind
((namestring-parse-error
(lambda(c)(declare (ignore c))
(unless errorp
(throw 'error-bailout nil)))))
(logical-word-or-lose thing))))
(found
(and valid-hostname
(or (gethash valid-hostname *logical-hosts*)
(and *autoload-translations* (and *autoload-translations*
(handler-case (ignore-errors
(load-logical-pathname-translations thing) (load-logical-pathname-translationsvalid-hostname))
(error () nil)) (gethash valid-hostname *logical-hosts*))))))
(gethash (logical-word-or-lose thing)
*logical-hosts*)))))
(if (or found (not errorp)) (if (or found (not errorp))
found found
(error 'simple-file-error (error 'simple-file-error
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment