Changeset 3af0828 in rtems


Ignore:
Timestamp:
07/02/00 12:29:47 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
c0ffdee
Parents:
e86236b
Message:

Fixed stat_ino should be st_ino.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/libfs/src/imfs/imfs_directory.c

    re86236b r3af0828  
    118118         tmp_dirent.d_reclen = sizeof( struct dirent );
    119119         the_jnode = (IMFS_jnode_t *) the_node;
    120          tmp_dirent.d_ino = the_jnode->stat_ino;
     120         tmp_dirent.d_ino = the_jnode->st_ino;
    121121         tmp_dirent.d_namlen = strlen( the_jnode->name );
    122122         strcpy( tmp_dirent.d_name, the_jnode->name );
  • c/src/lib/libc/imfs_directory.c

    re86236b r3af0828  
    118118         tmp_dirent.d_reclen = sizeof( struct dirent );
    119119         the_jnode = (IMFS_jnode_t *) the_node;
    120          tmp_dirent.d_ino = the_jnode->stat_ino;
     120         tmp_dirent.d_ino = the_jnode->st_ino;
    121121         tmp_dirent.d_namlen = strlen( the_jnode->name );
    122122         strcpy( tmp_dirent.d_name, the_jnode->name );
  • c/src/libfs/src/imfs/imfs_directory.c

    re86236b r3af0828  
    118118         tmp_dirent.d_reclen = sizeof( struct dirent );
    119119         the_jnode = (IMFS_jnode_t *) the_node;
    120          tmp_dirent.d_ino = the_jnode->stat_ino;
     120         tmp_dirent.d_ino = the_jnode->st_ino;
    121121         tmp_dirent.d_namlen = strlen( the_jnode->name );
    122122         strcpy( tmp_dirent.d_name, the_jnode->name );
  • cpukit/libfs/src/imfs/imfs_directory.c

    re86236b r3af0828  
    118118         tmp_dirent.d_reclen = sizeof( struct dirent );
    119119         the_jnode = (IMFS_jnode_t *) the_node;
    120          tmp_dirent.d_ino = the_jnode->stat_ino;
     120         tmp_dirent.d_ino = the_jnode->st_ino;
    121121         tmp_dirent.d_namlen = strlen( the_jnode->name );
    122122         strcpy( tmp_dirent.d_name, the_jnode->name );
Note: See TracChangeset for help on using the changeset viewer.