Changeset 21726 in vbox
- Timestamp:
- Jul 20, 2009 2:14:49 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50294
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleVRDPServer.cpp
r19134 r21726 1375 1375 if (RT_FAILURE (rc2)) 1376 1376 { 1377 LogRel(("VRDPAUTH: Could not resolve import '%s'. Error code: %Rrc\n", "VRDPAuth2", rc2)); 1377 if (rc2 != VERR_SYMBOL_NOT_FOUND) 1378 { 1379 LogRel(("VRDPAUTH: Could not resolve import '%s'. Error code: %Rrc\n", "VRDPAuth2", rc2)); 1380 } 1378 1381 rc = rc2; 1379 1382 } … … 1384 1387 if (RT_FAILURE (rc2)) 1385 1388 { 1386 LogRel(("VRDPAUTH: Could not resolve import '%s'. Error code: %Rrc\n", "VRDPAuth", rc2)); 1389 if (rc2 != VERR_SYMBOL_NOT_FOUND) 1390 { 1391 LogRel(("VRDPAUTH: Could not resolve import '%s'. Error code: %Rrc\n", "VRDPAuth", rc2)); 1392 } 1387 1393 rc = rc2; 1388 1394 }
Note:
See TracChangeset
for help on using the changeset viewer.