svn commit: r352449 - head/lib/libbe

Andriy Gapon avg at FreeBSD.org
Tue Sep 17 14:15:49 UTC 2019


Author: avg
Date: Tue Sep 17 14:15:48 2019
New Revision: 352449
URL: https://svnweb.freebsd.org/changeset/base/352449

Log:
  fixup up fallout from r352447 in libbe
  
  I totally forgot that we now have another in-tree consumer of libzfs.
  
  MFC after:	3 days
  X-MFC with:	r352447

Modified:
  head/lib/libbe/be.c

Modified: head/lib/libbe/be.c
==============================================================================
--- head/lib/libbe/be.c	Tue Sep 17 14:08:09 2019	(r352448)
+++ head/lib/libbe/be.c	Tue Sep 17 14:15:48 2019	(r352449)
@@ -775,6 +775,7 @@ be_export(libbe_handle_t *lbh, const char *bootenv, in
 	char snap_name[BE_MAXPATHLEN];
 	char buf[BE_MAXPATHLEN];
 	zfs_handle_t *zfs;
+	sendflags_t flags = { 0 };
 	int err;
 
 	if ((err = be_snapshot(lbh, bootenv, NULL, true, snap_name)) != 0)
@@ -786,7 +787,7 @@ be_export(libbe_handle_t *lbh, const char *bootenv, in
 	if ((zfs = zfs_open(lbh->lzh, buf, ZFS_TYPE_DATASET)) == NULL)
 		return (set_error(lbh, BE_ERR_ZFSOPEN));
 
-	err = zfs_send_one(zfs, NULL, fd, 0);
+	err = zfs_send_one(zfs, NULL, fd, flags);
 	zfs_close(zfs);
 
 	return (err);


More information about the svn-src-head mailing list