Package: ucf
Version: 3.009
Tags: patch

The code that skips large diffs introduced in 3.009 has a typo 
that deactivates the functionality. Patch attached; it works
for me with this.

Thanks for ucf,
-- 
Niko Tyni   [EMAIL PROTECTED]
diff --git a/ucf b/ucf
index a20f3c0..c82f84f 100755
--- a/ucf
+++ b/ucf
@@ -62,7 +62,7 @@ show_diff() {
     if [ -z "$1" ]; then
 	DIFF="There are no non-white space differences in the files."
     else
-        if  [ 99999 -lt $(echo $l | wc -c | awk '{print $1; }') ]; then
+        if  [ 99999 -lt $(echo $1 | wc -c | awk '{print $1; }') ]; then
             DIFF="The differences between the files are too large to display."
         else
             DIFF="$1"

Reply via email to