Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/distrib/utils/sysinst/arch/mac68k Pull up revision 1.12:



details:   https://anonhg.NetBSD.org/src/rev/70d581de3de8
branches:  netbsd-1-4
changeset: 469370:70d581de3de8
user:      he <he%NetBSD.org@localhost>
date:      Mon Sep 13 18:15:02 1999 +0000

description:
Pull up revision 1.12:
  Insert a leading slash in device name used in md_pre_disklabel(),
  fixing PR#8384.  (briggs)

diffstat:

 distrib/utils/sysinst/arch/mac68k/md.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 1ce4026986c5 -r 70d581de3de8 distrib/utils/sysinst/arch/mac68k/md.c
--- a/distrib/utils/sysinst/arch/mac68k/md.c    Fri Sep 10 23:38:06 1999 +0000
+++ b/distrib/utils/sysinst/arch/mac68k/md.c    Mon Sep 13 18:15:02 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: md.c,v 1.2.2.2 1999/06/24 22:51:39 cgd Exp $ */
+/*     $NetBSD: md.c,v 1.2.2.3 1999/09/13 18:15:02 he Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -639,7 +639,7 @@
      */
     printf ("%s", msg_string (MSG_dodiskmap));
 
-    snprintf (devname, sizeof(devname), "dev/r%sc", diskdev);
+    snprintf (devname, sizeof(devname), "/dev/r%sc", diskdev);
 
     /*
      * Open the disk as a raw device



Home | Main Index | Thread Index | Old Index