Eduard - Gabriel Munteanu
2010-Feb-14 07:26 UTC
[PATCH] bcp: fix off-by-one errors in path handling
This fixes a bug which causes the first character of each filename in the destination to be omitted. Signed-off-by: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro> --- bcp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bcp b/bcp index 5729e91..c6b4bef 100755 --- a/bcp +++ b/bcp @@ -137,7 +137,7 @@ for srci in xrange(0, src_args): statinfo = os.lstat(srcname) if srcname.startswith(src): - part = srcname[len(src) + 1:] + part = srcname[len(src):] if stat.S_ISLNK(statinfo.st_mode): copylink(srcname, dst, part, statinfo, None) @@ -153,7 +153,7 @@ for srci in xrange(0, src_args): for f in filenames: srcname = os.path.join(dirpath, f) if srcname.startswith(src): - part = srcname[len(src) + 1:] + part = srcname[len(src):] statinfo = os.lstat(srcname) copyfile(srcname, dst, part, statinfo, None) -- 1.6.4.4 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html