Changeset 29b4888 in mainline for uspace/app/untar/main.c
- Timestamp:
- 2013-12-03T07:50:53Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 53238ba
- Parents:
- ff042c0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/untar/main.c
rff042c0 r29b4888 104 104 { 105 105 int rc = mkdir(header->filename, 0755); 106 if ( rc == EEXISTS) {107 printf("Note: directory %s already exists.\n", header->filename);106 if ((rc == EEXIST) || (rc == EEXISTS)) { 107 // printf("Note: directory %s already exists.\n", header->filename); 108 108 rc = EOK; 109 109 }
Note:
See TracChangeset
for help on using the changeset viewer.