Changeset 3841


Ignore:
Timestamp:
Mar 16, 2014, 8:46:11 PM (11 years ago)
Author:
bird
Message:

Build fixes for the chown backport.

Location:
branches/libc-0.6/src/emx/src/lib/sys
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/src/lib/sys/b_fsFileOwnerSetFH.c

    r3817 r3841  
    8989            if (__predict_false(!pFH->pszNativePath))
    9090                LIBCLOG_ERROR_RETURN_INT(-EINVAL);
    91             rc = __libc_back_fsNativeFileOwner(pFH->pszNativePath, uid, gid);
     91            rc = __libc_back_fsNativeFileOwnerSet(pFH->pszNativePath, uid, gid);
    9292            if (rc)
    9393                LIBCLOG_ERROR_RETURN_INT(rc);
  • branches/libc-0.6/src/emx/src/lib/sys/b_fsNativeFileOwnerSet.c

    r3817 r3841  
    138138                        rc = 0;
    139139                    else
    140                         rc = -__libc_back_native2errno(rc);
     140                        rc = -__libc_native2errno(rc);
    141141                }
    142142            }
     
    165165
    166166        if (rc != NO_ERROR)
    167             rc = -__libc_back_native2errno(rc);
     167            rc = -__libc_native2errno(rc);
    168168    }
    169169    FS_RESTORE();
Note: See TracChangeset for help on using the changeset viewer.