Changeset 13835 in vbox for trunk/src/VBox/Additions/freebsd
- Timestamp:
- Nov 5, 2008 2:34:43 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38826
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/freebsd/vboxvfs/vboxvfs_vfsops.c
r8188 r13835 146 146 RTMemFree(pShFlShareName); 147 147 148 if ( VBOX_FAILURE (rc))148 if (RT_FAILURE (rc)) 149 149 { 150 150 RTMemFree(pShFlGlobalInfo); … … 175 175 176 176 rc = vboxCallUnmapFolder(&g_vboxSFClient, &pShFlGlobalInfo->map); 177 if ( VBOX_FAILURE(rc))177 if (RT_FAILURE(rc)) 178 178 printf("Failed to unmap shared folder\n"); 179 179 … … 223 223 /* Initialize the R0 guest library. */ 224 224 rc = vboxInit(); 225 if ( VBOX_FAILURE(rc))225 if (RT_FAILURE(rc)) 226 226 return ENXIO; 227 227 228 228 /* Connect to the host service. */ 229 229 rc = vboxConnect(&g_vboxSFClient); 230 if ( VBOX_FAILURE(rc))230 if (RT_FAILURE(rc)) 231 231 { 232 232 printf("Failed to get connection to host! rc=%d\n", rc); … … 236 236 237 237 rc = vboxCallSetUtf8 (&g_vboxSFClient); 238 if ( VBOX_FAILURE (rc))238 if (RT_FAILURE (rc)) 239 239 { 240 240 printf("vboxCallSetUtf8 failed, rc=%d\n", rc);
Note:
See TracChangeset
for help on using the changeset viewer.