- Timestamp:
- Oct 19, 2024 7:41:58 AM (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/installation/VBoxWinDrvInst.cpp
r106503 r106509 770 770 /* The more specific (using decorations), the better. Try these first. Might be NULL. */ 771 771 pwszSection, 772 /* Applies to primitive (and legacy) drivers. */ 773 L"DefaultUninstall" 772 /* The Default[Un]Install sections apply to primitive (and legacy) drivers. */ 773 pCtx->Parms.enmMode == VBOXWINDRVINSTMODE_INSTALL 774 ? L"DefaultInstall" : L"DefaultUninstall" 774 775 }; 775 776 … … 809 810 810 811 if (rc != VERR_NOT_FOUND) 811 vboxWinDrvInstLogError(pCtx, " Uninstalling INF section failed with %Rrc", rc);812 vboxWinDrvInstLogError(pCtx, "Trying INF section failed with %Rrc", rc); 812 813 } 813 814 } … … 815 816 if (rc == VERR_NOT_FOUND) 816 817 { 817 vboxWinDrvInstLogWarn(pCtx, "No matching uninstallation sectionfound -- buggy driver?");818 vboxWinDrvInstLogWarn(pCtx, "No matching section to try found -- buggy driver?"); 818 819 rc = VINF_SUCCESS; 819 820 }
Note:
See TracChangeset
for help on using the changeset viewer.