Skip to content

Commit

Permalink
filesystem: set proper check size for smb
Browse files Browse the repository at this point in the history
  • Loading branch information
FernetMenta authored and popcornmix committed Jan 19, 2018
1 parent 578ff86 commit 758d259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/filesystem/SMBFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class CSMBFile : public IFile
bool OpenForWrite(const CURL& url, bool bOverWrite = false) override;
bool Delete(const CURL& url) override;
bool Rename(const CURL& url, const CURL& urlnew) override;
int GetChunkSize() override { return 1; }
int GetChunkSize() override { return 2048*1024; }
int IoControl(EIoControl request, void* param) override;

protected:
Expand Down

0 comments on commit 758d259

Please sign in to comment.