From: Gé van Geldorp Date: Sun, 8 Jan 2006 20:12:11 +0000 (+0000) Subject: Don't close the pipe, we need it for the next client X-Git-Tag: backups/expat-rbuild@40467~434 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=bb6b6e3a605786524e6bd54d0b387c341458724e Don't close the pipe, we need it for the next client svn path=/trunk/; revision=20727 --- diff --git a/reactos/services/dhcp/pipe.c b/reactos/services/dhcp/pipe.c index 1b31f99017b..2b98c30fdb9 100644 --- a/reactos/services/dhcp/pipe.c +++ b/reactos/services/dhcp/pipe.c @@ -54,7 +54,7 @@ DWORD WINAPI PipeThreadProc( LPVOID Parameter ) { break; } } - CloseHandle( CommPipe ); + DisconnectNamedPipe( CommPipe ); } return TRUE;