Changeset 3841
- Timestamp:
 - Mar 16, 2014, 8:46:11 PM (12 years ago)
 - Location:
 - branches/libc-0.6/src/emx/src/lib/sys
 - Files:
 - 
      
- 2 edited
 
- 
          
  b_fsFileOwnerSetFH.c (modified) (1 diff)
 - 
          
  b_fsNativeFileOwnerSet.c (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
branches/libc-0.6/src/emx/src/lib/sys/b_fsFileOwnerSetFH.c
r3817 r3841 89 89 if (__predict_false(!pFH->pszNativePath)) 90 90 LIBCLOG_ERROR_RETURN_INT(-EINVAL); 91 rc = __libc_back_fsNativeFileOwner (pFH->pszNativePath, uid, gid);91 rc = __libc_back_fsNativeFileOwnerSet(pFH->pszNativePath, uid, gid); 92 92 if (rc) 93 93 LIBCLOG_ERROR_RETURN_INT(rc);  - 
      
branches/libc-0.6/src/emx/src/lib/sys/b_fsNativeFileOwnerSet.c
r3817 r3841 138 138 rc = 0; 139 139 else 140 rc = -__libc_ back_native2errno(rc);140 rc = -__libc_native2errno(rc); 141 141 } 142 142 } … … 165 165 166 166 if (rc != NO_ERROR) 167 rc = -__libc_ back_native2errno(rc);167 rc = -__libc_native2errno(rc); 168 168 } 169 169 FS_RESTORE();  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  