summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2006-08-31 20:11:19 +0000
committerChris Wilson <chris+github@qwirx.com>2006-08-31 20:11:19 +0000
commitb4f24408e408ca7f9f8c64955477f5c2aa47a459 (patch)
tree807d2a4295fc2069b5f441e9d7fe083d1b29f083 /bin
parentb97df587f4ebf1cd445d72d9f129a24bb8d29b67 (diff)
* bin/bbstored/BackupStoreDaemon.h
- Reinstate SendMessageToHousekeepingProcess() on Win32, but make it do nothing (refs #3)
Diffstat (limited to 'bin')
-rw-r--r--bin/bbstored/BackupStoreDaemon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bbstored/BackupStoreDaemon.h b/bin/bbstored/BackupStoreDaemon.h
index 47f29327..0ce6f21f 100644
--- a/bin/bbstored/BackupStoreDaemon.h
+++ b/bin/bbstored/BackupStoreDaemon.h
@@ -38,13 +38,13 @@ private:
BackupStoreDaemon(const BackupStoreDaemon &rToCopy);
public:
-#ifndef WIN32
// For BackupContext to communicate with housekeeping process
void SendMessageToHousekeepingProcess(const void *Msg, int MsgLen)
{
+#ifndef WIN32
mInterProcessCommsSocket.Write(Msg, MsgLen);
- }
#endif
+ }
protected: