;;; -*- Mode:Lisp; Readtable:CL; Package:USER; Base:10; Patch-File:T -*- ;;; Patch file for System version 123.44 ;;; Reason: ;;; If si:parse-host cannot find a host-name that appears in the pack-name, ;;; net:find-network-address-for-other-processor gets an error. ;;; Written 9-Oct-87 11:15:58 by pld at site LMI Cambridge ;;; while running on Jack Flanders from band 2 ;;; with Experimental System 123.43, Experimental Local-File 73.0, Experimental FILE-Server 22.0, Experimental Unix-Interface 11.0, Experimental Tape 18.0, Experimental KERMIT 34.0, Experimental ZMail 71.0, Experimental Lambda-Diag 15.0, microcode 1754, SDU Boot Tape 3.12, SDU ROM 8. ; From modified file DJ: L.NETWORK.KERNEL; LIBRARY.LISP#51 at 9-Oct-87 11:16:00 #10R NETWORK#: (COMPILER-LET ((*PACKAGE* (GLOBAL:PKG-FIND-PACKAGE "NETWORK"))) (COMPILER::PATCH-SOURCE-FILE "SYS: NETWORK; KERNEL; LIBRARY  " (defun find-network-address-for-other-processor (op domain) (let* ((host-name (nth (si:op-proc-number op) (multiple-value-list (si:get-pack-name)))) (host (si:parse-host host-name t nil))) (when host (send host :network-address domain)))) ))