diff options
author | Matt Macy <mmacy@FreeBSD.org> | 2020-08-25 17:23:33 +0000 |
---|---|---|
committer | Matt Macy <mmacy@FreeBSD.org> | 2020-08-25 17:23:33 +0000 |
commit | 1ea0b9a5a9975039d3fcd2941875326d7a1122ae (patch) | |
tree | 7b7509ae4fafe115aacae84dd715e97a65f3c72d | |
parent | 5db7b015e9aa18e129d73992583491702e4a5206 (diff) | |
download | src-1ea0b9a5a9975039d3fcd2941875326d7a1122ae.tar.gz src-1ea0b9a5a9975039d3fcd2941875326d7a1122ae.zip |
Fix userboot after r364355
r364355 replaced init_zfs_bootenv with init_zfs_boot_options and
neglected to update userboot in the process.
Notes
Notes:
svn path=/head/; revision=364773
-rw-r--r-- | stand/userboot/userboot/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/userboot/userboot/main.c b/stand/userboot/userboot/main.c index 148398bd6c91..82851982fbcb 100644 --- a/stand/userboot/userboot/main.c +++ b/stand/userboot/userboot/main.c @@ -232,7 +232,7 @@ extract_currdev(void) bzero(&zdev, sizeof(zdev)); zdev.dd.d_dev = &zfs_dev; - init_zfs_bootenv(zfs_fmtdev(&zdev)); + init_zfs_boot_options(zfs_fmtdev(&zdev)); dd = &zdev.dd; } else #endif |