kernel 2026b changes

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@384 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2002-05-08 23:57:58 +00:00
parent e5ecc591db
commit 8320afcb82
2 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,8 @@
* don't copy FCBs on exec if they are pointed to by FFFF:FFFF. * don't copy FCBs on exec if they are pointed to by FFFF:FFFF.
* resolved warnings for Watcom (now compiles with -wx -we) * resolved warnings for Watcom (now compiles with -wx -we)
* truename fix (return DE_FILENOTFND for foo.bar.foo) * truename fix (return DE_FILENOTFND for foo.bar.foo)
+ Changes Jeremy
* fixed SYS _dos_getdrive for non-Borland compilers
+ Changes Tom and Bart + Changes Tom and Bart
* cleaned up fatfs.c, fattab.c, sysclk.c (CLOCK$ driver), systime.c * cleaned up fatfs.c, fattab.c, sysclk.c (CLOCK$ driver), systime.c
2002 Feb 17 - Build 2026a 2002 Feb 17 - Build 2026a

View File

@ -268,6 +268,7 @@ int main(int argc, char **argv)
srcDrive = (unsigned) getdisk(); srcDrive = (unsigned) getdisk();
#else #else
_dos_getdrive(&srcDrive); _dos_getdrive(&srcDrive);
srcDrive--;
#endif #endif
} }