diff options
-rw-r--r-- | module/nvpair/nvpair.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/nvpair/nvpair.c b/module/nvpair/nvpair.c index 251629225..5f6423ccc 100644 --- a/module/nvpair/nvpair.c +++ b/module/nvpair/nvpair.c @@ -2714,7 +2714,8 @@ nvlist_xunpack(char *buf, size_t buflen, nvlist_t **nvlp, nv_alloc_t *nva) if ((err = nvlist_xalloc(&nvl, 0, nva)) != 0) return (err); - if ((err = nvlist_common(nvl, buf, &buflen, 0, NVS_OP_DECODE)) != 0) + if ((err = nvlist_common(nvl, buf, &buflen, NV_ENCODE_NATIVE, + NVS_OP_DECODE)) != 0) nvlist_free(nvl); else *nvlp = nvl; |