From 024a8b460a946dac7d1ec7c8ccd118a49b0606f0 Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Sat, 10 Apr 1999 15:05:06 +0000
Subject: [PATCH] Fix for the handling of the device field in wild-pathname-p,
 from Christophe Rhodes.

---
 code/pathname.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/pathname.lisp b/code/pathname.lisp
index cdd39f82c..270e9ac59 100644
--- a/code/pathname.lisp
+++ b/code/pathname.lisp
@@ -4,7 +4,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.37 1999/02/11 12:24:30 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.38 1999/04/10 15:05:06 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -959,7 +959,7 @@ a host-structure or string."
 	     (wild-pathname-p pathname :type)
 	     (wild-pathname-p pathname :version)))
 	(:host (frob (%pathname-host pathname)))
-	(:device (frob (%pathname-host pathname)))
+	(:device (frob (%pathname-device pathname)))
 	(:directory (some #'frob (%pathname-directory pathname)))
 	(:name (frob (%pathname-name pathname)))
 	(:type (frob (%pathname-type pathname)))
-- 
GitLab