summaryrefslogtreecommitdiff
path: root/methods/ftp.h
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2010-07-05 12:06:45 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2010-07-05 12:06:45 +0200
commit7ea4af9da25a802516461434b12a61e21743f960 (patch)
tree9277fece2f8bd004ffa8f5ca558423de98afa8d8 /methods/ftp.h
parent9643d533f38fa35b345755201eebfd227aa5adbb (diff)
parentfd3b761e8cba6ed626639b50b1221246098c7b3a (diff)
merge with debian-experimental-ma
Diffstat (limited to 'methods/ftp.h')
-rw-r--r--methods/ftp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/ftp.h b/methods/ftp.h
index 1bcea41b6..d7f1f7fbe 100644
--- a/methods/ftp.h
+++ b/methods/ftp.h
@@ -40,7 +40,7 @@ class FTPConn
public:
- bool Comp(URI Other) {return Other.Host == ServerName.Host && Other.Port == ServerName.Port;};
+ bool Comp(URI Other) {return Other.Host == ServerName.Host && Other.Port == ServerName.Port && Other.User == ServerName.User && Other.Password == ServerName.Password; };
// Raw connection IO
bool ReadResp(unsigned int &Ret,string &Text);