[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:47 UTC 2012


The following commit has been merged in the wheezy branch:
commit 533edd737c843e434f0c3c345a02568de0e40f67
Author: Oleksij Rempel <bug-track at fisher-privat.net>
Date:   Fri May 25 10:58:50 2012 +0200

    krnl386: Set 11-bit for fixed drive.
    (cherry picked from commit 3a8eae3191a71b8783e1215701d667beb1738850)

diff --git a/dlls/krnl386.exe16/int21.c b/dlls/krnl386.exe16/int21.c
index 45b3187..69edfef 100644
--- a/dlls/krnl386.exe16/int21.c
+++ b/dlls/krnl386.exe16/int21.c
@@ -2495,6 +2495,10 @@ static void INT21_Ioctl_Block( CONTEXT *context )
             /* 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 if (drivetype == DRIVE_FIXED)
+            /* This should define if drive support 0x0d, 0x0f and 0x08
+             * requests. The local fixed drive should do. */
+            SET_DX( context, (1<<11) );
         else
             SET_DX( context, 0 ); /* FIXME: use driver attr here */
         break;

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list