dpnet/tests: A spelling fix in a variable name.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2017-02-10 16:40:32 +01:00 committed by Alexandre Julliard
parent 9c72376c8c
commit fc8fcc344f
1 changed files with 2 additions and 2 deletions

View File

@ -237,7 +237,7 @@ HRESULT set_firewall( enum firewall_op op )
{
static const WCHAR dpnsvrW[] =
{'d','p','n','s','v','r','.','e','x','e',0};
static const WCHAR seperator[] = {'\\',0};
static const WCHAR separator[] = {'\\',0};
static const WCHAR clientW[] =
{'d','p','n','e','t','_','c','l','i','e','n','t',0};
static const WCHAR serverW[] =
@ -262,7 +262,7 @@ HRESULT set_firewall( enum firewall_op op )
SysFreeString( image );
return E_FAIL;
}
lstrcatW(path, seperator);
lstrcatW(path, separator);
lstrcatW(path, dpnsvrW);
init = CoInitializeEx( 0, COINIT_APARTMENTTHREADED );