reverted change but left both #defines of KERNEL_FILE in place.
authorStephen Adams <edu/mit/csail/zurich/adams>
Wed, 13 Nov 1996 22:15:28 +0000 (22:15 +0000)
committerStephen Adams <edu/mit/csail/zurich/adams>
Wed, 13 Nov 1996 22:15:28 +0000 (22:15 +0000)
v7/src/microcode/hppacach.c

index 105e75a9fae5e612953cec3bfdf694d9f0cafa4b..d26dbee5b8c9027985c8d6091adcf64f61e4a831 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: hppacach.c,v 1.10 1996/11/13 22:09:05 adams Exp $
+$Id: hppacach.c,v 1.11 1996/11/13 22:15:28 adams Exp $
 
 Copyright (c) 1990-1993 Massachusetts Institute of Technology
 
@@ -60,8 +60,8 @@ MIT in each case. */
 \f
 /* File that contains the symbol table for the kernel */
 
-#define KERNEL_FILE1           "/hp-ux"
-#define KERNEL_FILE2           "/stand/vmunix"
+#define KERNEL_FILE            "/hp-ux"
+#define KERNEL_FILE            "/stand/vmunix"
 
 /* File where the kernel image lives */
 
@@ -116,9 +116,8 @@ read_nlist (kloc)
 {
   DEBUGGING (printf ("reading nlist...\n"));
 
-  if ((nlist (KERNEL_FILE1, nl)) != 0)
-    if ((nlist (KERNEL_FILE2, nl)) != 0)
-      io_lose ("read_nlist", "failed on %s and %s", KERNEL_FILE1, KERNEL_FILE2);
+  if ((nlist (KERNEL_FILE, nl)) != 0)
+    io_lose ("read_nlist", "failed on both %s and %s", KERNEL_FILE);
 
   DEBUGGING (printf ("reading nlist done.\n"));