From dffae50cae231f51b551304cb8df033e52d65fc4 Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 27 Jul 2007 17:40:37 +0000 Subject: And more to fix git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7593 e03df62e-2008-0410-955e-edbf42e46eb7 --- win/inspircd_win32wrapper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'win') diff --git a/win/inspircd_win32wrapper.cpp b/win/inspircd_win32wrapper.cpp index 0e7f0172e..cc56af69d 100644 --- a/win/inspircd_win32wrapper.cpp +++ b/win/inspircd_win32wrapper.cpp @@ -366,7 +366,7 @@ int getopt_long_only(int ___argc, char *const *___argv, const char *__shortopts, #define IPC_MESSAGE_DIE 2 #define IPC_MESSAGE_RESTART 3 -void IPC::IPC(InspIRCd* Srv) : Instance(Srv) +IPC::IPC(InspIRCd* Srv) : Instance(Srv) { static DWORD buflen = 1024; static const char * pipename = "\\\\.\\mailslot\\Inspircd"; @@ -394,7 +394,7 @@ void IPC::Check() switch (action) { case IPC_MESSAGE_REHASH: - Instance->Rehash(0); + Instance->Rehash(); break; case IPC_MESSAGE_DIE: @@ -407,7 +407,7 @@ void IPC::Check() } } -void IPC::~IPC() +IPC::~IPC() { CloseHandle(hIPCPipe); } -- cgit v1.2.3