summaryrefslogtreecommitdiff
path: root/bin/bbackupd/BackupClientContext.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2010-06-06 15:12:20 +0000
committerChris Wilson <chris+github@qwirx.com>2010-06-06 15:12:20 +0000
commit03c09a7085382693f80a91aebb09b8ada429e704 (patch)
tree15aaee6f7b068f58016af2770a06bd4e81bb6df7 /bin/bbackupd/BackupClientContext.h
parent90ce1105466ef4f09c3370344c55ae9710d38f9f (diff)
Add support for account numbers greater than 0x7fffffff without wrapping.
Diffstat (limited to 'bin/bbackupd/BackupClientContext.h')
-rw-r--r--bin/bbackupd/BackupClientContext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bbackupd/BackupClientContext.h b/bin/bbackupd/BackupClientContext.h
index 4665df2b..404d2d77 100644
--- a/bin/bbackupd/BackupClientContext.h
+++ b/bin/bbackupd/BackupClientContext.h
@@ -45,7 +45,7 @@ public:
TLSContext &rTLSContext,
const std::string &rHostname,
int32_t Port,
- int32_t AccountNumber,
+ uint32_t AccountNumber,
bool ExtendedLogging,
bool ExtendedLogToFile,
std::string ExtendedLogFile,
@@ -213,7 +213,7 @@ private:
TLSContext &mrTLSContext;
std::string mHostname;
int mPort;
- int32_t mAccountNumber;
+ uint32_t mAccountNumber;
SocketStreamTLS *mpSocket;
BackupProtocolClient *mpConnection;
bool mExtendedLogging;