Changeset 102990 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Jan 22, 2024 5:13:50 PM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 161222
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c
r100268 r102990 1411 1411 } 1412 1412 else if (pParam->name[0] != 'd') 1413 strlcpy(&g_szLogGrp[0], pszValue, sizeof(g_szLogGrp));1413 RT_STRSCPY(&g_szLogGrp[0], pszValue, sizeof(g_szLogGrp)); 1414 1414 1415 1415 return 0; … … 1437 1437 } 1438 1438 else if (pParam->name[0] != 'd') 1439 strlcpy(&g_szLogFlags[0], pszValue, sizeof(g_szLogFlags));1439 RT_STRSCPY(&g_szLogFlags[0], pszValue, sizeof(g_szLogFlags)); 1440 1440 return 0; 1441 1441 } … … 1462 1462 } 1463 1463 else if (pParam->name[0] != 'd') 1464 strlcpy(&g_szLogDst[0], pszValue, sizeof(g_szLogDst));1464 RT_STRSCPY(&g_szLogDst[0], pszValue, sizeof(g_szLogDst)); 1465 1465 return 0; 1466 1466 }
Note:
See TracChangeset
for help on using the changeset viewer.