From e72f9ec49fa94c170c9d3799a9168151647e7ccd Mon Sep 17 00:00:00 2001 From: "Stephen J. Kiernan" Date: Fri, 11 Nov 2016 16:59:26 +0000 Subject: [PATCH] The file_loadraw function grew an argument, update install function accordingly. Reviewed by: imp Approved by: sjg (mentor) MFC after: 2 weeks Sponsored by: Juniper Networks, Inc. Differential Revision: https://reviews.freebsd.org/D8494 --- sys/boot/common/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/common/install.c b/sys/boot/common/install.c index 36e7c6484dc..e40c228a5ea 100644 --- a/sys/boot/common/install.c +++ b/sys/boot/common/install.c @@ -286,7 +286,7 @@ install(char *pkgname) } s = (inst_rootfs == NULL) ? "/install.iso" : inst_rootfs; - if (file_loadraw(s, "mfs_root") == NULL) { + if (file_loadraw(s, "mfs_root", 1) == NULL) { error = errno; command_errmsg = "cannot load root file system"; goto fail;