Source-Changes-HG archive

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

[src/netbsd-1-6]: src/distrib/utils/sysinst/arch/mvme68k Pull up revision 1.2...



details:   https://anonhg.NetBSD.org/src/rev/004f10cd912e
branches:  netbsd-1-6
changeset: 527761:004f10cd912e
user:      lukem <lukem%NetBSD.org@localhost>
date:      Wed Jun 05 09:41:28 2002 +0000

description:
Pull up revision 1.2 (requested by scw in ticket #173):
Quell a warning when a partition starts at sector zero.
This is perfectly legitimate on mvme68k.

diffstat:

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

diffs (18 lines):

diff -r d5cc25dbf88a -r 004f10cd912e distrib/utils/sysinst/arch/mvme68k/md.c
--- a/distrib/utils/sysinst/arch/mvme68k/md.c   Wed Jun 05 09:38:01 2002 +0000
+++ b/distrib/utils/sysinst/arch/mvme68k/md.c   Wed Jun 05 09:41:28 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: md.c,v 1.1 2002/03/24 22:04:05 scw Exp $       */
+/*     $NetBSD: md.c,v 1.1.2.1 2002/06/05 09:41:28 lukem Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -198,7 +198,7 @@
                        if (last < A)
                                last = part;
                } else {
-                       if (start >= bsdlabel[part].pi_offset) {
+                       if (start > bsdlabel[part].pi_offset) {
                                msg_display(MSG_ordering, part+'a');
                                process_menu(MENU_yesno);
                                if (yesno)



Home | Main Index | Thread Index | Old Index