Unverified Commit 05bbce37 by Christian Brauner Committed by GitHub

Merge pull request #2948 from pgauret/patch-1

Fix 'zfs get' command order
parents a24d015d 69b6aa30
......@@ -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