summaryrefslogtreecommitdiff
path: root/lib/backupstore
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2014-04-09 22:15:01 +0000
committerChris Wilson <chris+github@qwirx.com>2014-04-09 22:15:01 +0000
commit9bb4c01ba28370ef07a43df27834ab02ffbd7dc4 (patch)
treecc2f0fee3f428e79ee8534a23fb10d62ceb0708f /lib/backupstore
parent7175691ff83781a2c733540f465298e78f7ad93f (diff)
Fix a (currently cosmetic) bug in BackupProtocolLocal2 account ID.
It was hardcoded to 0x01234567 due to a copy and paste error.
Diffstat (limited to 'lib/backupstore')
-rw-r--r--lib/backupstore/BackupProtocol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/backupstore/BackupProtocol.h b/lib/backupstore/BackupProtocol.h
index 8736b44f..561c6ccd 100644
--- a/lib/backupstore/BackupProtocol.h
+++ b/lib/backupstore/BackupProtocol.h
@@ -40,7 +40,7 @@ public:
{
mContext.SetClientHasAccount(AccountRootDir, DiscSetNumber);
QueryVersion(BACKUP_STORE_SERVER_VERSION);
- QueryLogin(0x01234567,
+ QueryLogin(AccountNumber,
ReadOnly ? BackupProtocolLogin::Flags_ReadOnly : 0);
}
virtual ~BackupProtocolLocal2() { }