From 2c5cab5454658eb100b313ab031ed11ab73f311d Mon Sep 17 00:00:00 2001 From: Jan Haller Date: Fri, 28 Mar 2014 13:38:19 +0100 Subject: [PATCH] Made Ftp::sendCommand() public --- include/SFML/Network/Ftp.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SFML/Network/Ftp.hpp b/include/SFML/Network/Ftp.hpp index b10baeee..d3bf1a35 100644 --- a/include/SFML/Network/Ftp.hpp +++ b/include/SFML/Network/Ftp.hpp @@ -483,8 +483,6 @@ public : //////////////////////////////////////////////////////////// Response upload(const std::string& localFile, const std::string& remotePath, TransferMode mode = Binary); -private : - //////////////////////////////////////////////////////////// /// \brief Send a command to the FTP server /// @@ -496,6 +494,8 @@ private : //////////////////////////////////////////////////////////// Response sendCommand(const std::string& command, const std::string& parameter = ""); +private: + //////////////////////////////////////////////////////////// /// \brief Receive a response from the server ///