Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/mfs/mfs_dentry.c

    r44ecf89 r013d0d7  
    3636 *
    3737 * @param mnode         Pointer to the directory node.
    38  * @param d_info        Pointer to a directory entry structure where the dentry info
    39  *                      will be stored.
     38 * @param d_info        Pointer to a directory entry structure where
     39 *                      the dentry info will be stored.
    4040 * @param index         index of the dentry in the list.
    4141 *
     
    101101/**Write a directory entry on disk.
    102102 *
    103  * @param d_info Pointer to the directory entry structure to write on disk.
     103 * @param d_info The directory entry to write to disk.
    104104 *
    105105 * @return       EOK on success or a negative error code.
     
    178178
    179179                if (name_len == d_name_len &&
    180                     memcmp(d_info.d_name, d_name, name_len) == 0) {
     180                    !bcmp(d_info.d_name, d_name, name_len)) {
    181181
    182182                        d_info.d_inum = 0;
Note: See TracChangeset for help on using the changeset viewer.