Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/sysinst Reorder fetch options: http before ftp



details:   https://anonhg.NetBSD.org/src/rev/7a9be2e9974e
branches:  trunk
changeset: 323204:7a9be2e9974e
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Jun 03 13:23:58 2018 +0000

description:
Reorder fetch options: http before ftp

diffstat:

 usr.sbin/sysinst/menus.mi |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r de4b1b3ec066 -r 7a9be2e9974e usr.sbin/sysinst/menus.mi
--- a/usr.sbin/sysinst/menus.mi Sun Jun 03 13:18:06 2018 +0000
+++ b/usr.sbin/sysinst/menus.mi Sun Jun 03 13:23:58 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: menus.mi,v 1.12 2018/05/18 12:23:22 joerg Exp $        */
+/*     $NetBSD: menus.mi,v 1.13 2018/06/03 13:23:58 martin Exp $       */
 
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -327,8 +327,8 @@
 
 menu distmedium, title MSG_Select_medium, y=-5;
        option MSG_cdrom,     exit, action { *(int *)arg = get_via_cdrom(); };
+       option MSG_http,      exit, action { *(int *)arg = get_via_ftp("http"); };
        option MSG_ftp,       exit, action { *(int *)arg = get_via_ftp("ftp"); };
-       option MSG_http,      exit, action { *(int *)arg = get_via_ftp("http"); };
        option MSG_nfs,       exit, action { *(int *)arg = get_via_nfs(); };
        option MSG_floppy,    exit, action { *(int *)arg = get_via_floppy(); };
        option MSG_local_fs,  exit, action { *(int *)arg = get_via_localfs(); };



Home | Main Index | Thread Index | Old Index