Changeset 36063 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Feb 23, 2011 3:56:00 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70181
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleVRDPServer.cpp
r35722 r36063 1680 1680 rc = RTLdrLoad(filename.c_str(), &mAuthLibrary); 1681 1681 else 1682 { 1682 1683 rc = RTLdrLoadAppPriv(filename.c_str(), &mAuthLibrary); 1684 if (RT_FAILURE(rc)) 1685 { 1686 /* Backward compatibility with old default 'VRDPAuth' name. 1687 * Try to load new default 'VBoxAuth' instead. 1688 */ 1689 if (filename == "VRDPAuth") 1690 { 1691 LogRel(("AUTH: ConsoleVRDPServer::Authenticate: loading external authentication library VBoxAuth\n")); 1692 rc = RTLdrLoadAppPriv("VBoxAuth", &mAuthLibrary); 1693 } 1694 } 1695 } 1683 1696 1684 1697 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.