Unverified Commit 69b6aa30 by pgauret Committed by GitHub

Fix 'zfs get' command order

Another case of calling 'zfs get' which requires reordering arguments to work with latest zfs. Signed-off-by: 's avatarPaul Gauret <pgauret@yahoo.com>
parent a24d015d
......@@ -101,7 +101,7 @@ int zfs_get_parent_snapshot_exec_wrapper(void *args)
{
struct zfs_args *zfs_args = args;
execlp("zfs", "zfs", "get", "origin", "-o", "value", "-H",
execlp("zfs", "zfs", "get", "-H", "-o", "value", "origin",
zfs_args->dataset, (char *)NULL);
return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment