From 807e95ce11de993dc3d4711b44c0cda8a75def05 Mon Sep 17 00:00:00 2001 From: cxl Date: Fri, 10 Aug 2018 08:04:16 +0000 Subject: [PATCH] Core/SSH: Fixed to compile git-svn-id: svn://ultimatepp.org/upp/trunk@12156 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/SSH/SFtp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/SSH/SFtp.cpp b/uppsrc/Core/SSH/SFtp.cpp index e5f39bc88..9ed82c7f0 100644 --- a/uppsrc/Core/SSH/SFtp.cpp +++ b/uppsrc/Core/SSH/SFtp.cpp @@ -288,7 +288,7 @@ bool SFtp::SaveFile(const char *path, Stream& in) void SFtp::LoadFile(Stream& out, const char *path) { SFtpFileIn in(*this, path); - return CopyStream(in, out) >= 0; + CopyStream(in, out) >= 0; } bool SFtp::Get(SFtpHandle handle, Stream& out)