summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2006-08-30 18:52:01 +0000
committerChris Wilson <chris+github@qwirx.com>2006-08-30 18:52:01 +0000
commit5989931d7c88696a1e4858c9ea4a93a8312efc53 (patch)
tree6d179c7310d3318b6adc8977bfb550add049c7cc /bin
parent7286b52c4b2f703d8862088b1197bb848bba36da (diff)
* bin/bbstored/BackupStoreDaemon.h
- Removed SendMessageToHousekeepingProcess() on Win32, no longer needed
Diffstat (limited to 'bin')
-rw-r--r--bin/bbstored/BackupStoreDaemon.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/bbstored/BackupStoreDaemon.h b/bin/bbstored/BackupStoreDaemon.h
index 2fbe486d..3123b21f 100644
--- a/bin/bbstored/BackupStoreDaemon.h
+++ b/bin/bbstored/BackupStoreDaemon.h
@@ -38,11 +38,13 @@ private:
BackupStoreDaemon(const BackupStoreDaemon &rToCopy);
public:
- // For BackupContext to comminicate with housekeeping process
+#ifndef WIN32
+ // For BackupContext to communicate with housekeeping process
void SendMessageToHousekeepingProcess(const void *Msg, int MsgLen)
{
mInterProcessCommsSocket.Write(Msg, MsgLen);
}
+#endif
protected: