Skip to content

Commit

Permalink
Merge pull request sukria#134 from nat93-dev/patch-1
Browse files Browse the repository at this point in the history
bm-upload : Fix ftptls_put_file args position
  • Loading branch information
kissifrot authored Jan 19, 2021
2 parents 90b5f71 + d15aafc commit a287061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backup-manager-upload
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ sub ftptls_put_file ($$)
{
my ($ftp, $file) = @_;
my $basename = basename ($file);
return $ftp->put ($basename, $file);
return $ftp->put ($file, $basename);
}

# }}}
Expand Down

0 comments on commit a287061

Please sign in to comment.