aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJorgen Lundman <[email protected]>2021-07-22 11:22:27 +0900
committerGitHub <[email protected]>2021-07-21 20:22:27 -0600
commitc14ad80fcbcfc011686f01a89644eea7c028a879 (patch)
tree19f9f223512f18afec0989d2e4fd61ce49fbce7d /lib
parent1b50749ce9757030ddd4dba9f03ee18182cda82e (diff)
Remove old orig_fd variable from zfs send
Possibly required in the past, but is currently fills no purpose. Ordinarily such tiny cleanup is not generally worth it, however on the macOS port, in a future commit, we do unspeakable things to the "fd" for send/recv, and it would be easier to only have to deal with one "fd" instead of two. Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Tony Nguyen <[email protected]> Signed-off-by: Jorgen Lundman <[email protected]> Closes #12404
Diffstat (limited to 'lib')
-rw-r--r--lib/libzfs/libzfs_sendrecv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libzfs/libzfs_sendrecv.c b/lib/libzfs/libzfs_sendrecv.c
index 5c57028c4..36a480d36 100644
--- a/lib/libzfs/libzfs_sendrecv.c
+++ b/lib/libzfs/libzfs_sendrecv.c
@@ -2391,7 +2391,6 @@ zfs_send_one(zfs_handle_t *zhp, const char *from, int fd, sendflags_t *flags,
int err;
libzfs_handle_t *hdl = zhp->zfs_hdl;
char *name = zhp->zfs_name;
- int orig_fd = fd;
pthread_t ptid;
progress_arg_t pa = { 0 };
@@ -2523,7 +2522,7 @@ zfs_send_one(zfs_handle_t *zhp, const char *from, int fd, sendflags_t *flags,
if (flags->props || flags->holds || flags->backup) {
/* Write the final end record. */
- err = send_conclusion_record(orig_fd, NULL);
+ err = send_conclusion_record(fd, NULL);
if (err != 0)
return (zfs_standard_error(hdl, err, errbuf));
}