- Timestamp:
- Jan 20, 2022 8:46:09 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-ipc.cpp
r93383 r93386 50 50 #include <unistd.h> 51 51 52 /** Maximum length of login name in system database. */53 #define VBOX_LOGIN_NAME_MAX (256)54 55 52 /** 56 53 * Calculate size of TX list entry. … … 240 237 while (*pAllowedGroup->gr_mem) 241 238 { 242 if (RTStrNCmp(*pAllowedGroup->gr_mem, UserRecord->pw_name, VBOX_LOGIN_NAME_MAX) == 0)239 if (RTStrNCmp(*pAllowedGroup->gr_mem, UserRecord->pw_name, LOGIN_NAME_MAX) == 0) 243 240 return VINF_SUCCESS; 244 241
Note:
See TracChangeset
for help on using the changeset viewer.