Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/cdfs/cdfs_ops.c

    rfeeac0d r3e6a98c5  
    365365       
    366366        /* Check for duplicate entries */
    367         list_foreach(parent->cs_list, link, cdfs_dentry_t, dentry) {
     367        list_foreach(parent->cs_list, link) {
     368                cdfs_dentry_t *dentry =
     369                    list_get_instance(link, cdfs_dentry_t, link);
     370               
    368371                if (str_cmp(dentry->name, name) == 0)
    369372                        return EEXIST;
     
    521524        }
    522525       
    523         list_foreach(parent->cs_list, link, cdfs_dentry_t, dentry) {
     526        list_foreach(parent->cs_list, link) {
     527                cdfs_dentry_t *dentry =
     528                    list_get_instance(link, cdfs_dentry_t, link);
     529               
    524530                if (str_cmp(dentry->name, component) == 0) {
    525531                        *fn = get_cached_node(parent->service_id, dentry->index);
     
    654660         */
    655661        if ((vol_desc->type != VOL_DESC_PRIMARY) ||
    656             (memcmp(vol_desc->standard_ident, CDFS_STANDARD_IDENT, 5) != 0) ||
     662            (bcmp(vol_desc->standard_ident, CDFS_STANDARD_IDENT, 5) != 0) ||
    657663            (vol_desc->version != 1)) {
    658664                block_put(block);
Note: See TracChangeset for help on using the changeset viewer.