smb: fix about size wrong by switching to github.com/cloudsoda/go-smb2/ fork

Before this change smb drives sometimes showed a fraction of the
correct size using `rclone about`.

This fixes the problem by switching the upstream library from
github.com/hirochachacha/go-smb2 to github.com/cloudsoda/go-smb2 which
has a fix for the problem.

The new library passes the integration tests.

Fixes #6733
This commit is contained in:
Nick Craig-Wood 2023-11-20 16:34:07 +00:00
parent 0244caf13a
commit edb5ccdd0b
3 changed files with 4 additions and 6 deletions

View file

@ -6,7 +6,7 @@ import (
"net"
"time"
smb2 "github.com/hirochachacha/go-smb2"
smb2 "github.com/cloudsoda/go-smb2"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/accounting"
"github.com/rclone/rclone/fs/config/obscure"