aboutsummaryrefslogtreecommitdiffstats
path: root/src/fcopy/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fcopy/main.c')
-rw-r--r--src/fcopy/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fcopy/main.c b/src/fcopy/main.c
index 88379001c..b9d2c19a8 100644
--- a/src/fcopy/main.c
+++ b/src/fcopy/main.c
@@ -322,6 +322,12 @@ int main(int argc, char **argv) {
322 exit(1); 322 exit(1);
323 } 323 }
324 324
325 // trim trailing chars
326 if (src[strlen(src) - 1] == '/')
327 src[strlen(src) - 1] = '\0';
328 if (dest[strlen(dest) - 1] == '/')
329 dest[strlen(dest) - 1] = '\0';
330
325 // check the two files; remove ending / 331 // check the two files; remove ending /
326 int len = strlen(src); 332 int len = strlen(src);
327 if (src[len - 1] == '/') 333 if (src[len - 1] == '/')