Module Name: src
Committed By: martin
Date: Sun Jun 3 13:23:58 UTC 2018
Modified Files:
src/usr.sbin/sysinst: menus.mi
Log Message:
Reorder fetch options: http before ftp
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/usr.sbin/sysinst/menus.mi
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/sysinst/menus.mi
diff -u src/usr.sbin/sysinst/menus.mi:1.12 src/usr.sbin/sysinst/menus.mi:1.13
--- src/usr.sbin/sysinst/menus.mi:1.12 Fri May 18 12:23:22 2018
+++ src/usr.sbin/sysinst/menus.mi Sun Jun 3 13:23:58 2018
@@ -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 sizechoice, sub menu, y=0, title MS
menu distmedium, title MSG_Select_medium, y=-5;
option MSG_cdrom, exit, action { *(int *)arg = get_via_cdrom(); };
- option MSG_ftp, exit, action { *(int *)arg = get_via_ftp("ftp"); };
option MSG_http, exit, action { *(int *)arg = get_via_ftp("http"); };
+ option MSG_ftp, exit, action { *(int *)arg = get_via_ftp("ftp"); };
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(); };