From 7bfd079b37ce4a3e610c6e94fc9a364af3a242da Mon Sep 17 00:00:00 2001 From: Ron Gage Date: Tue, 28 Mar 2000 20:41:46 +0000 Subject: [PATCH] Fixed bug reported by winapi_check. --- include/wine/winnet16.h | 2 +- misc/network.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wine/winnet16.h b/include/wine/winnet16.h index 67bab0d109c..399fd237a83 100644 --- a/include/wine/winnet16.h +++ b/include/wine/winnet16.h @@ -180,7 +180,7 @@ WORD WINAPI WNetGetCaps16(WORD); * Get User */ -WORD WINAPI WNetGetUser16(LPSTR,LPINT16); +WORD WINAPI WNetGetUser16(LPCSTR,LPSTR,LPINT16); /* diff --git a/misc/network.c b/misc/network.c index a7ea2b03b2b..17411d2ec28 100644 --- a/misc/network.c +++ b/misc/network.c @@ -295,9 +295,9 @@ WORD WINAPI WNetGetCaps16( WORD capability ) /************************************************************************** * WNetGetUser16 [USER.516] */ -WORD WINAPI WNetGetUser16( LPSTR szUser, LPINT16 nBufferSize ) +WORD WINAPI WNetGetUser16( LPCSTR lpName, LPSTR szUser, LPINT16 nBufferSize ) { - FIXME( "(%p, %p): stub\n", szUser, nBufferSize ); + FIXME( "(%p, %p, %p): stub\n", lpName, szUser, nBufferSize ); return WN16_NOT_SUPPORTED; }