On Mon, May 2, 2011 at 13:58, <[email protected]> wrote: >... > +++ subversion/trunk/subversion/include/svn_wc.h Mon May 2 17:58:05 2011 > @@ -3011,7 +3011,7 @@ typedef struct svn_wc_info_t > const char *copyfrom_url; > svn_revnum_t copyfrom_rev; > apr_time_t text_time; > - const char *checksum; > + svn_checksum_t *checksum;
const! >... > + if (info2->wc_info->checksum > + && info2->wc_info->checksum->kind == svn_checksum_md5) > + info->checksum = svn_checksum_to_cstring( > + info2->wc_info->checksum, pool); > + else > + info->checksum = NULL; I would note this means the checksum will be NULL for users of the old API (since the new API returns SHA-1 checksums). This could be viewed as a regression. >... Cheers, -g

