mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Update vendor/illumos/dist to 14160:734110b9882f:
Illumos ZFS issues:
1765 assert triggered in libzfs_import.c trying to import pool
name beginning with a number
This commit is contained in:
parent
fd1be4250e
commit
d264a033cd
1 changed files with 4 additions and 1 deletions
|
|
@ -24,6 +24,7 @@
|
|||
* Copyright 2011 Nexenta Systems, Inc. All rights reserved.
|
||||
* Copyright (c) 2012 by Delphix. All rights reserved.
|
||||
* Copyright (c) 2012 by Frederik Wessels. All rights reserved.
|
||||
* Copyright (c) 2013 by Prasad Joshi (sTec). All rights reserved.
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
|
|
@ -1988,8 +1989,10 @@ zpool_do_import(int argc, char **argv)
|
|||
|
||||
errno = 0;
|
||||
searchguid = strtoull(argv[0], &endptr, 10);
|
||||
if (errno != 0 || *endptr != '\0')
|
||||
if (errno != 0 || *endptr != '\0') {
|
||||
searchname = argv[0];
|
||||
searchguid = 0;
|
||||
}
|
||||
found_config = NULL;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue