commit | d80e851dc05f978dded84b7ac9fcae7066e3ffe0 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Tue Nov 16 00:46:00 1999 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Tue Nov 16 00:46:00 1999 +0000 |
tree | 9f32d236ce80a7a692f74fe1012df3bed6b19418 | |
parent | a9c95ea6551eb3d894fcc56822c8aa394972b699 [diff] [blame] |
Stuf
diff --git a/coreutils/cp.c b/coreutils/cp.c index 57158c8..ce63201 100644 --- a/coreutils/cp.c +++ b/coreutils/cp.c
@@ -54,6 +54,8 @@ strcat(newdestName, "/"); if ( skipName != NULL) strcat(newdestName, strstr(fileName, skipName)); + else + strcat(newdestName, srcName); } return (copyFile(fileName, newdestName, preserveFlag, followLinks)); }