Changeset 23a0368 in mainline for uspace/app/bdsh/compl.c
- Timestamp:
- 2017-03-30T19:52:23Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ae7bfbbd
- Parents:
- b5b5d84
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/compl.c
rb5b5d84 r23a0368 33 33 #include <macros.h> 34 34 #include <stdlib.h> 35 #include < sys/stat.h>35 #include <vfs/vfs.h> 36 36 37 37 #include "cmds/cmds.h" … … 360 360 asprintf(&ent_path, "%s/%s", *cs->path, dent->d_name); 361 361 struct stat ent_stat; 362 if ( stat(ent_path, &ent_stat) != 0) {362 if (vfs_stat_path(ent_path, &ent_stat) != EOK) { 363 363 /* Error */ 364 364 free(ent_path);
Note:
See TracChangeset
for help on using the changeset viewer.