Changeset 93155 in vbox for trunk/src/VBox/Additions/os2
- Timestamp:
- Jan 9, 2022 1:02:41 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/os2/VBoxOs2AdditionsInstall.cpp
r93145 r93155 771 771 772 772 773 /** Adds DEVICE=[path]\ VBoxGuest.sys to the modified Config.sys. */773 /** Adds DEVICE=[path]\\VBoxGuest.sys to the modified Config.sys. */ 774 774 static bool ConfigSysAddVBoxGuest(void) 775 775 { … … 781 781 782 782 783 /** Adds IFS=[path]\ VBoxFS.IFS to the modified Config.sys. */783 /** Adds IFS=[path]\\VBoxSF.IFS to the modified Config.sys. */ 784 784 static bool ConfigSysAddVBoxSF(void) 785 785 { … … 791 791 792 792 793 /** Adds DEVICE=[path]\ VBoxMouse.sys to the modified Config.sys. */793 /** Adds DEVICE=[path]\\VBoxMouse.sys to the modified Config.sys. */ 794 794 static bool ConfigSysAddVBoxMouse(void) 795 795 { … … 1073 1073 /* Remove old VBoxSF.IFS lines */ 1074 1074 else if ( !(g_fSkipMask & SKIP_SHARED_FOLDERS) 1075 && ( MatchOnlyFilename(pchLine, off, cchLine, RT_STR_TUPLE("VBOX FS.IFS"))1076 || MatchOnlyFilename(pchLine, off, cchLine, RT_STR_TUPLE("VBOX SF.IFS")) ) )1075 && ( MatchOnlyFilename(pchLine, off, cchLine, RT_STR_TUPLE("VBOXSF.IFS")) 1076 || MatchOnlyFilename(pchLine, off, cchLine, RT_STR_TUPLE("VBOXFS.IFS")) ) ) 1077 1077 { 1078 1078 if (g_fVerbose)
Note:
See TracChangeset
for help on using the changeset viewer.