- Enabled resumable flag

This commit is contained in:
Asmir Selimovic 2020-01-17 14:00:56 +01:00 committed by Faruk Kasumovic
parent bcc079909a
commit e317057e63
1 changed files with 1 additions and 1 deletions

View File

@ -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