summaryrefslogtreecommitdiff
path: root/methods/ftp.cc
diff options
context:
space:
mode:
authorChristian Perrier <bubulle@debian.org>2005-03-06 17:54:58 +0000
committerChristian Perrier <bubulle@debian.org>2005-03-06 17:54:58 +0000
commitdb0db9feabf17156f1f4e10d0131d18dfb593b4e (patch)
treed9ec4fb344879e0b990546ecc5242e605262bb29 /methods/ftp.cc
parenta7c82edc8ff6a051ffcae5a4000085aae04bad24 (diff)
Bring consistency to the use of capitals in programs messages
Diffstat (limited to 'methods/ftp.cc')
-rw-r--r--methods/ftp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/methods/ftp.cc b/methods/ftp.cc
index fafa10534..b744d9882 100644
--- a/methods/ftp.cc
+++ b/methods/ftp.cc
@@ -201,7 +201,7 @@ bool FTPConn::Login()
if (ReadResp(Tag,Msg) == false)
return false;
if (Tag >= 400)
- return _error->Error(_("Server refused our connection and said: %s"),Msg.c_str());
+ return _error->Error(_("The server refused the connection and said: %s"),Msg.c_str());
// Send the user
if (WriteMsg(Tag,Msg,"USER %s",User.c_str()) == false)
@@ -443,7 +443,7 @@ bool FTPConn::WriteMsg(unsigned int &Ret,string &Text,const char *Fmt,...)
int Res = write(ServerFd,S + Start,Len);
if (Res <= 0)
{
- _error->Errno("write",_("Write Error"));
+ _error->Errno("write",_("Write error"));
Close();
return false;
}