BRUH
This commit is contained in:
parent
54c5165f0e
commit
b5819fbc96
@ -89,14 +89,17 @@ int cptree(const char *src, const char *dst) {
|
|||||||
if (S_ISDIR(stat_path.st_mode) == 0) {
|
if (S_ISDIR(stat_path.st_mode) == 0) {
|
||||||
if (copy(src, dst)) {
|
if (copy(src, dst)) {
|
||||||
fprintf(stderr, "cp: %s: is not directory\n", src);
|
fprintf(stderr, "cp: %s: is not directory\n", src);
|
||||||
return -1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
mkdir(dst, 0777);
|
if (mkdir(dst, 0777) < 0) {
|
||||||
|
fprintf(stderr, "cp: %s\n", strerror(errno));
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DIR *dir = opendir(src);
|
DIR *dir = opendir(src);
|
||||||
|
@ -1 +0,0 @@
|
|||||||
hshshs
|
|
Loading…
Reference in New Issue
Block a user