From e317057e63bb5b5dd391a37818f9a29d7eb89d5e Mon Sep 17 00:00:00 2001 From: Asmir Selimovic Date: Fri, 17 Jan 2020 14:00:56 +0100 Subject: [PATCH] - Enabled resumable flag --- sendrecv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sendrecv.go b/sendrecv.go index e4bcc34..0d36575 100644 --- a/sendrecv.go +++ b/sendrecv.go @@ -78,7 +78,7 @@ func to_recvflags_t(flags *RecvFlags) (cflags *C.recvflags_t) { cflags.dryrun = to_boolean_t(flags.DryRun) cflags.force = to_boolean_t(flags.Force) cflags.canmountoff = to_boolean_t(flags.CanmountOff) - // cflags.resumable = to_boolean_t(flags.Resumable) + cflags.resumable = to_boolean_t(flags.Resumable) cflags.byteswap = to_boolean_t(flags.ByteSwap) cflags.nomount = to_boolean_t(flags.NoMount) return