From 2c144a0365c84dbf1b6722466746d42f2563a319 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sun, 31 Jul 2011 11:01:47 +0300 Subject: Fix exit status of "xzdiff foo.xz bar.xz". xzdiff was clobbering the exit status from diff in a case statement used to analyze the exit statuses from "xz" when its operands were two compressed files. Save and restore diff's exit status to fix this. The bug is inherited from zdiff in GNU gzip and was fixed there on 2009-10-09. Thanks to Jonathan Nieder for the patch and to Peter Pallinger for reporting the bug. --- src/scripts/xzdiff.in | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/scripts/xzdiff.in') diff --git a/src/scripts/xzdiff.in b/src/scripts/xzdiff.in index 45633e0a..deec3ebf 100644 --- a/src/scripts/xzdiff.in +++ b/src/scripts/xzdiff.in @@ -120,10 +120,12 @@ elif test $# -eq 2; then ( ($xz2 -cdfq -- "$2" 4>&-; echo $? >&4) 3>&- 5<&- &3) 5<&0 ) + cmp_status=$? case $xz_status in *[1-9]*) xz_status=1;; *) xz_status=0;; esac + (exit $cmp_status) else F=`expr "/$2" : '.*/\(.*\)[-.][ablmtxz2]*$'` || F=$prog tmp= -- cgit v1.2.3