]> Dogcows Code - chaz/tar/blobdiff - src/compare.c
Update FSF postal mail address.
[chaz/tar] / src / compare.c
index d23a68aa227bd100fc28cd583ff691b2178e96c7..0ad12233c9b3d2ec85eb882bb756eaf40d13d779 100644 (file)
@@ -17,7 +17,7 @@
 
    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
-   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 #include <system.h>
 
@@ -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);
 
This page took 0.026203 seconds and 4 git commands to generate.