Changeset 3af0828 in rtems
- Timestamp:
- 07/02/00 12:29:47 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c0ffdee
- Parents:
- e86236b
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libfs/src/imfs/imfs_directory.c
re86236b r3af0828 118 118 tmp_dirent.d_reclen = sizeof( struct dirent ); 119 119 the_jnode = (IMFS_jnode_t *) the_node; 120 tmp_dirent.d_ino = the_jnode->st at_ino;120 tmp_dirent.d_ino = the_jnode->st_ino; 121 121 tmp_dirent.d_namlen = strlen( the_jnode->name ); 122 122 strcpy( tmp_dirent.d_name, the_jnode->name ); -
c/src/lib/libc/imfs_directory.c
re86236b r3af0828 118 118 tmp_dirent.d_reclen = sizeof( struct dirent ); 119 119 the_jnode = (IMFS_jnode_t *) the_node; 120 tmp_dirent.d_ino = the_jnode->st at_ino;120 tmp_dirent.d_ino = the_jnode->st_ino; 121 121 tmp_dirent.d_namlen = strlen( the_jnode->name ); 122 122 strcpy( tmp_dirent.d_name, the_jnode->name ); -
c/src/libfs/src/imfs/imfs_directory.c
re86236b r3af0828 118 118 tmp_dirent.d_reclen = sizeof( struct dirent ); 119 119 the_jnode = (IMFS_jnode_t *) the_node; 120 tmp_dirent.d_ino = the_jnode->st at_ino;120 tmp_dirent.d_ino = the_jnode->st_ino; 121 121 tmp_dirent.d_namlen = strlen( the_jnode->name ); 122 122 strcpy( tmp_dirent.d_name, the_jnode->name ); -
cpukit/libfs/src/imfs/imfs_directory.c
re86236b r3af0828 118 118 tmp_dirent.d_reclen = sizeof( struct dirent ); 119 119 the_jnode = (IMFS_jnode_t *) the_node; 120 tmp_dirent.d_ino = the_jnode->st at_ino;120 tmp_dirent.d_ino = the_jnode->st_ino; 121 121 tmp_dirent.d_namlen = strlen( the_jnode->name ); 122 122 strcpy( tmp_dirent.d_name, the_jnode->name );
Note: See TracChangeset
for help on using the changeset viewer.