VirtualBox

Ignore:
Timestamp:
Nov 5, 2008 2:34:43 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38826
Message:

s/VBOX_SUCCESS/RT_SUCCESS/g s/VBOX_FAILURE/RT_FAILURE/g - VBOX_SUCCESS and VBOX_FAILURE have *NOT* been retired (because old habbits die hard) just sligtly deprecated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/solaris/SharedFolders/vboxvfs_vfsops.c

    r11982 r13835  
    194194    /* Initialize the R0 guest library. */
    195195    rc = vboxInit();
    196     if (VBOX_SUCCESS(rc))
     196    if (RT_SUCCESS(rc))
    197197    {
    198198        /* Connect to the host service. */
    199199        rc = vboxConnect(&g_VBoxVFSClient);
    200         if (VBOX_SUCCESS(rc))
     200        if (RT_SUCCESS(rc))
    201201        {
    202202            /* Use UTF-8 encoding. */
    203203            rc = vboxCallSetUtf8 (&g_VBoxVFSClient);
    204             if (VBOX_SUCCESS(rc))
     204            if (RT_SUCCESS(rc))
    205205            {
    206206                /* Fill up VFS user entry points. */
     
    387387            rc = vboxCallMapFolder(&g_VBoxVFSClient, pShflShareName, &pVBoxVFSGlobalInfo->Map);
    388388            RTMemFree(pShflShareName);
    389             if (VBOX_SUCCESS(rc))
     389            if (RT_SUCCESS(rc))
    390390                rc = 0;
    391391            else
     
    502502
    503503    rc = vboxCallUnmapFolder(&g_VBoxVFSClient, &pVBoxVFSGlobalInfo->Map);
    504     if (VBOX_FAILURE(rc))
     504    if (RT_FAILURE(rc))
    505505        LogRel((DEVICE_NAME ":VBoxVFS_Unmount: failed to unmap shared folder. rc=%d\n", rc));
    506506
     
    537537    rc = vboxCallFSInfo(&g_VBoxVFSClient, &pVBoxVFSGlobalInfo->Map, 0, SHFL_INFO_GET | SHFL_INFO_VOLUME, &cbBuffer,
    538538                    (PSHFLDIRINFO)&VolumeInfo);
    539     if (VBOX_FAILURE(rc))
     539    if (RT_FAILURE(rc))
    540540        return RTErrConvertToErrno(rc);
    541541
Note: See TracChangeset for help on using the changeset viewer.

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