From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4722 invoked by alias); 10 Nov 2003 14:25:40 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 4706 invoked from network); 10 Nov 2003 14:25:39 -0000 Received: from unknown (HELO redhat.com) (66.187.230.200) by sources.redhat.com with SMTP; 10 Nov 2003 14:25:39 -0000 Received: by redhat.com (Postfix, from userid 201) id 916EA332804; Mon, 10 Nov 2003 09:25:35 -0500 (EST) Date: Mon, 10 Nov 2003 14:25:00 -0000 From: Christopher Faylor To: cygwin@cygwin.com Subject: Re: New tar available for testing (was Re: here is a patch for gnu tar incremental backup...) Message-ID: <20031110142535.GA13408@redhat.com> Reply-To: cygwin@cygwin.com Mail-Followup-To: cygwin@cygwin.com References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i X-SW-Source: 2003-11/txt/msg00317.txt.bz2 On Mon, Nov 10, 2003 at 01:25:02PM +0000, Jeremy Green wrote: >I.e. files/foo/bar is backed-up even though it hasn't changed. With the >application of the following patch to the tar-1.13.25-4 source package: > >--- src/incremen.c.orig 2003-11-10 12:27:36.094206400 +0000 >+++ src/incremen.c 2003-11-10 12:33:06.629492800 +0000 >@@ -437,7 +437,7 @@ read_directory_file (void) > > errno = 0; > #ifdef __CYGWIN_USE_BIG_TYPES__ >- ino = strtoul (strp, &ebuf, 10); >+ ino = strtoull (strp, &ebuf, 10); > #else > ino = strtoul (strp, &ebuf, 10); > #endif Odd. I already have that change in my sandbox already but I must have made the change after uploading the file. I'll refresh the source and binaries shortly. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/