X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fcompare.c;h=916ee29426002b343b554fdfd9c46df9dd7e402d;hb=d78f85d61d525401ac3e5ef4b9b692d27cfdf8d2;hp=d23a68aa227bd100fc28cd583ff691b2178e96c7;hpb=781d3818e520a7fe6ab1ceb051bc13777f8511d7;p=chaz%2Ftar diff --git a/src/compare.c b/src/compare.c index d23a68a..916ee29 100644 --- a/src/compare.c +++ b/src/compare.c @@ -243,9 +243,9 @@ diff_file () } else { - int fd = open (current_stat_info.file_name, O_RDONLY | O_BINARY); + diff_handle = open (current_stat_info.file_name, O_RDONLY | O_BINARY); - if (fd < 0) + if (diff_handle < 0) { open_error (current_stat_info.file_name); skip_member (); @@ -278,7 +278,7 @@ diff_file () assign_string (&save_name, 0); } - status = close (fd); + status = close (diff_handle); if (status != 0) close_error (current_stat_info.file_name);