Changeset 5b3cf90 in mainline for uspace/app/bdsh/cmds/modules/ls/ls.c
- Timestamp:
- 2009-08-02T19:38:02Z (14 years ago)
- Branches:
- lfn, master, serial
- Children:
- fa5526d
- Parents:
- f019cc07
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/ls/ls.c
rf019cc07 r5b3cf90 90 90 int rc; 91 91 92 if (rc = stat(pathname, &s)) { 92 rc = stat(pathname, &s); 93 if (rc != 0) { 93 94 /* Odd chance it was deleted from the time readdir() found it */ 94 95 printf("ls: skipping bogus node %s\n", pathname);
Note: See TracChangeset
for help on using the changeset viewer.