Obviously I have seeing this a lot recently. :-o Gerald ChangeLog: Improve error message for RAS not being supported. Index: rasapi.c =================================================================== RCS file: /home/wine/wine/dlls/rasapi32/rasapi.c,v retrieving revision 1.21 diff -u -3 -p -r1.21 rasapi.c --- rasapi.c 8 Nov 2002 18:53:19 -0000 1.21 +++ rasapi.c 3 Apr 2003 17:54:02 -0000 @@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ras); DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD lpcb, LPDWORD lpcConnections) { /* Remote Access Service stuff is done by underlying OS anyway */ FIXME("(%p,%p,%p),stub!\n",rca,lpcb,lpcConnections); - FIXME("RAS support is not implemented ! Configure program to use LAN connection/winsock instead !\n"); + FIXME("RAS support is not implemented! Configure program to use LAN connection/winsock instead!\n"); *lpcConnections = 0; /* no RAS connections available */ return 0; @@ -42,7 +42,7 @@ DWORD WINAPI RasEnumConnectionsA( LPRASC DWORD WINAPI RasEnumConnectionsW( LPRASCONNW rcw, LPDWORD lpcb, LPDWORD lpcConnections) { /* Remote Access Service stuff is done by underlying OS anyway */ FIXME("(%p,%p,%p),stub!\n",rcw,lpcb,lpcConnections); - FIXME("RAS support is not implemented ! Configure program to use LAN connection/winsock instead !\n"); + FIXME("RAS support is not implemented! Configure program to use LAN connection/winsock instead!\n"); *lpcConnections = 0; /* no RAS connections available */ return 0;