diff options
author | Landry Breuil <landry@cvs.openbsd.org> | 2020-03-08 18:22:37 +0000 |
---|---|---|
committer | Landry Breuil <landry@cvs.openbsd.org> | 2020-03-08 18:22:37 +0000 |
commit | 5e6b532b7ed6f0e7d4e9c20929a7906b34353a94 (patch) | |
tree | fcf31349d4c128b1c45e009d6b49bc78806abe9b /sys/arch | |
parent | fd2ca2dd830df557bc0c425981aa7f7219918fe4 (diff) |
fs_name[] must match file_system[], adapt for ufs2 support.
fixes pxeboot - committing on behalf of otto@ who cant right now.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/stand/pxeboot/conf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/stand/pxeboot/conf.c b/sys/arch/amd64/stand/pxeboot/conf.c index d8d02730556..51d68b2fa08 100644 --- a/sys/arch/amd64/stand/pxeboot/conf.c +++ b/sys/arch/amd64/stand/pxeboot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.48 2020/03/05 16:36:30 otto Exp $ */ +/* $OpenBSD: conf.c,v 1.49 2020/03/08 18:22:36 landry Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -44,7 +44,7 @@ #include "pxeboot.h" #include "pxe_net.h" -const char version[] = "3.46"; +const char version[] = "3.47"; int debug = 0; void (*sa_cleanup)(void) = pxe_shutdown; @@ -70,7 +70,7 @@ int nibprobes = nitems(probe_list); /* This next list must match file_system[]. */ char *fs_name[] = { - NULL, "tftp", "nfs" + NULL, NULL, "tftp", "nfs" }; int nfsname = nitems(fs_name); |