[pkg-wine-party] [SCM] Debian Wine packaging branch, wheezy, updated. wine-1.4-7-302-gb61b690
Alexandre Julliard
julliard at winehq.org
Sun Jun 17 20:03:46 UTC 2012
The following commit has been merged in the wheezy branch:
commit 7260a26f8ce70254c9591ce8dbf30e33355f35cd
Author: Oleksij Rempel <bug-track at fisher-privat.net>
Date: Fri May 25 10:58:49 2012 +0200
krnl386: Set remote bit for cdrom.
(cherry picked from commit 75555c3011484b980f4e2b8dc6d237abbba4a0ea)
diff --git a/dlls/krnl386.exe16/int21.c b/dlls/krnl386.exe16/int21.c
index 241ecc1..45b3187 100644
--- a/dlls/krnl386.exe16/int21.c
+++ b/dlls/krnl386.exe16/int21.c
@@ -2491,6 +2491,10 @@ static void INT21_Ioctl_Block( CONTEXT *context )
if (drivetype == DRIVE_REMOTE)
SET_DX( context, (1<<9) | (1<<12) ); /* remote + no direct IO */
+ else if (drivetype == DRIVE_CDROM)
+ /* CDROM should be set to remote. If it set the app will
+ * call int2f to check if it cdrom or remote drive. */
+ SET_DX( context, (1<<12) );
else
SET_DX( context, 0 ); /* FIXME: use driver attr here */
break;
--
Debian Wine packaging
More information about the pkg-wine-party
mailing list