From 09b7efa06cc51688bec665193ca6ee20acedd9d8 Mon Sep 17 00:00:00 2001 From: Octavio Alvarez Date: Fri, 12 Sep 2008 01:56:39 -0700 Subject: [PATCH] Fixed length usage for hashes other than MD5 in audiodup. --- src/audiodup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audiodup b/src/audiodup index b0ff8bf..6915844 100755 --- a/src/audiodup +++ b/src/audiodup @@ -60,4 +60,4 @@ shift $((OPTIND-1)) find $* -iname "*.mp3" | \ audiosum -b | sort | uniq -D -w 8 | cut -d ' ' -f 6- | \ audiosum -b $PERCENT | sort | uniq -D -w $((HASH_LEN+9)) | cut -d ' ' -f 7- | \ - audiosum | sort | uniq --all-repeated=separate -w 41 + audiosum | sort | uniq --all-repeated=separate -w $((HASH_LEN+9)) -- 2.11.4.GIT