Changeset 55579 in vbox for trunk/src/VBox/Additions
- Timestamp:
- May 1, 2015 10:02:24 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99952
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r55578 r55579 2350 2350 { 2351 2351 case VBOXSERVICESESSIONOPT_LOG_FILE: 2352 if (!RTStrPrintf(g_szLogFile, sizeof(g_szLogFile), "%s", ValueUnion.psz))2353 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Unable to set logfile name to '%s'",2354 ValueUnion.psz);2352 rc = RTStrCopy(g_szLogFile, sizeof(g_szLogFile), ValueUnion.psz); 2353 if (RT_FAILURE(rc)) 2354 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error copying log file name: %Rrc", rc); 2355 2355 break; 2356 2356 #ifdef DEBUG
Note:
See TracChangeset
for help on using the changeset viewer.