VirtualBox

Changeset 13835 in vbox for trunk/src/VBox/Additions/freebsd


Ignore:
Timestamp:
Nov 5, 2008 2:34:43 AM (16 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/freebsd/vboxvfs/vboxvfs_vfsops.c

    r8188 r13835  
    146146    RTMemFree(pShFlShareName);
    147147
    148     if (VBOX_FAILURE (rc))
     148    if (RT_FAILURE (rc))
    149149    {
    150150        RTMemFree(pShFlGlobalInfo);
     
    175175
    176176    rc = vboxCallUnmapFolder(&g_vboxSFClient, &pShFlGlobalInfo->map);
    177     if (VBOX_FAILURE(rc))
     177    if (RT_FAILURE(rc))
    178178        printf("Failed to unmap shared folder\n");
    179179
     
    223223    /* Initialize the R0 guest library. */
    224224    rc = vboxInit();
    225     if (VBOX_FAILURE(rc))
     225    if (RT_FAILURE(rc))
    226226        return ENXIO;
    227227
    228228    /* Connect to the host service. */
    229229    rc = vboxConnect(&g_vboxSFClient);
    230     if (VBOX_FAILURE(rc))
     230    if (RT_FAILURE(rc))
    231231    {
    232232        printf("Failed to get connection to host! rc=%d\n", rc);
     
    236236
    237237    rc = vboxCallSetUtf8 (&g_vboxSFClient);
    238     if (VBOX_FAILURE (rc))
     238    if (RT_FAILURE (rc))
    239239    {
    240240        printf("vboxCallSetUtf8 failed, rc=%d\n", rc);
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