[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: svn up problem using latest trunk revision (1092011)

From: Bert Huijben <bert_at_qqmail.nl>
Date: Thu, 14 Apr 2011 09:19:03 +0200

> -----Original Message-----
> From: Marc Haesen [mailto:Marc.Haesen_at_oneaccess-net.com]
> Sent: donderdag 14 april 2011 8:11
> To: dev_at_subversion.apache.org
> Subject: svn up problem using latest trunk revision (1092011)
>
> I am using the latest version of svn on trunk compiled for windows. When
> executing the following commands:
>
>
>
> svn co http://tinyos-main.googlecode.com/svn/trunk/tos/chips/atm128/spi
> .
>
> svn up -r5516 .
>
>
>
> I get the following error:
>
>
>
> Updating '.' ...
>
> svn: E155017: Checksum mismatch while updating
> 'D:\temp\temp\HplAtm128SpiP.nc':
>
> expected: 95f9d9ccfd75a2e9764c2f2d4904152a
>
> actual: 57bf0651502cd65d9446e2f44f661526

This patch would only affect the error:

    if (recorded_base_checksum && expected_base_checksum
        && strcmp(expected_base_checksum, recorded_base_checksum) != 0)
      return svn_error_createf(SVN_ERR_WC_CORRUPT_TEXT_BASE, NULL,
                     _("Checksum mismatch for '%s':\n"
                       " expected: %s\n"
                       " recorded: %s\n"),
                     svn_dirent_local_style(fb->local_abspath, pool),
                     expected_base_checksum, recorded_base_checksum);

While you got the error from a different function.

Are you sure you tested this on a clean checkout?

(What HEAD version did you get on the checkout? I can't reproduce it here)

        Bert
Received on 2011-04-14 09:19:41 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.