Changeset 9146

Show
Ignore:
Timestamp:
12/07/11 15:58:40 (18 months ago)
Author:
k
Message:

realpath.c: Temporary fix to use readlink (instead of pvfs_readlink) because using pvfs_readlink introduces a backwards dependency. i.e. this should not depened on usrint.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/common/misc/realpath.c

    r9143 r9146  
    171171        if (ret == 0) 
    172172        { 
    173             n = pvfs_readlink(resolved_path, link_path, PATH_MAX); 
     173            n = readlink(resolved_path, link_path, PATH_MAX); 
    174174        } 
    175175        else