summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2012-11-08 00:49:38 +0000
committerChris Wilson <chris+github@qwirx.com>2012-11-08 00:49:38 +0000
commit675e518490e955648044b6385dd3616feb62fe61 (patch)
treefe010d5b65f543d9c4d7a77eaacdd254acd044ce
parent94748bf7ec3ad231ff78a025dda92fe3ed72850b (diff)
Fix compile failure due to removal of fields from BackupClientContext.
-rw-r--r--bin/bbackupd/BackupClientContext.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/bbackupd/BackupClientContext.cpp b/bin/bbackupd/BackupClientContext.cpp
index 9db1b6dc..52e1a40f 100644
--- a/bin/bbackupd/BackupClientContext.cpp
+++ b/bin/bbackupd/BackupClientContext.cpp
@@ -59,8 +59,6 @@ BackupClientContext::BackupClientContext
mHostname(rHostname),
mPort(Port),
mAccountNumber(AccountNumber),
- mpSocket(0),
- mpConnection(0),
mExtendedLogging(ExtendedLogging),
mExtendedLogToFile(ExtendedLogToFile),
mExtendedLogFile(ExtendedLogFile),
@@ -74,7 +72,7 @@ BackupClientContext::BackupClientContext
mpExcludeDirs(0),
mKeepAliveTimer(0, "KeepAliveTime"),
mbIsManaged(false),
- mrProgressNotifier(rProgressNotifier)
+ mrProgressNotifier(rProgressNotifier),
mTcpNiceMode(TcpNiceMode)
{
}