Commit 0a788579 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Correct error message in case DOSFS_OpenDevice() fails on a COMx

device.
parent ea2a9a89
...@@ -723,6 +723,9 @@ static HANDLE DOSFS_CreateCommPort(LPCSTR name, DWORD access) ...@@ -723,6 +723,9 @@ static HANDLE DOSFS_CreateCommPort(LPCSTR name, DWORD access)
} }
SERVER_END_REQ; SERVER_END_REQ;
if(!ret)
ERR("Couldn't open %s ! (check permissions)\n",devname);
else
TRACE("return %08X\n", ret ); TRACE("return %08X\n", ret );
return ret; return ret;
} }
...@@ -780,7 +783,6 @@ HANDLE DOSFS_OpenDevice( const char *name, DWORD access ) ...@@ -780,7 +783,6 @@ HANDLE DOSFS_OpenDevice( const char *name, DWORD access )
if( (handle=DOSFS_CreateCommPort(DOSFS_Devices[i].name,access)) ) if( (handle=DOSFS_CreateCommPort(DOSFS_Devices[i].name,access)) )
return handle; return handle;
FIXME("device open %s not supported (yet)\n",DOSFS_Devices[i].name); FIXME("device open %s not supported (yet)\n",DOSFS_Devices[i].name);
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment