VirtualBox

Changeset 19514 in vbox for trunk/src/VBox/Additions/common


Ignore:
Timestamp:
May 8, 2009 8:33:19 AM (16 years ago)
Author:
vboxsync
Message:

VBoxService/common: Tabs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp

    r19513 r19514  
    221221#else
    222222        utmp* ut_user;
    223                 rc = utmpname(UTMP_FILE);
    224                 if (rc != 0)
    225                 {
    226                         VBoxServiceError("Could not set  UTMP file! Error: %ld", errno);
    227                 }
    228                 setutent();
    229                 while ((ut_user=getutent()))
    230                 {
    231                         /* Make sure we don't add user names which are not
    232                         * part of type USER_PROCESS and don't add same users twice. */
    233                         if (   (ut_user->ut_type == USER_PROCESS)
    234                                 && (strstr(szUserList, ut_user->ut_user) == NULL))
    235                         {
    236                                 if (uiUserCount > 0)
    237                                         strcat(szUserList, ",");
    238                                 strcat(szUserList, ut_user->ut_user);
    239                                 uiUserCount++;
    240                         }
    241                 }
    242                 endutent();
     223        rc = utmpname(UTMP_FILE);
     224        if (rc != 0)
     225        {
     226            VBoxServiceError("Could not set  UTMP file! Error: %ld", errno);
     227        }
     228        setutent();
     229        while ((ut_user=getutent()))
     230        {
     231            /* Make sure we don't add user names which are not
     232            * part of type USER_PROCESS and don't add same users twice. */
     233            if (   (ut_user->ut_type == USER_PROCESS)
     234                && (strstr(szUserList, ut_user->ut_user) == NULL))
     235            {
     236                if (uiUserCount > 0)
     237                    strcat(szUserList, ",");
     238                strcat(szUserList, ut_user->ut_user);
     239                uiUserCount++;
     240            }
     241        }
     242        endutent();
    243243#endif /* !RT_OS_WINDOWS */
    244244
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette