On Wed, May 26, 2010 at 16:46, <rhuij...@apache.org> wrote: >... > +++ subversion/trunk/subversion/libsvn_wc/status.c Wed May 26 20:46:48 2010 >... > @@ -2042,7 +2045,7 @@ close_directory(void *dir_baton, > eb->anchor_status->repos_text_status = repos_text_status; > > /* If the root dir is out of date set the ood info directly too. */ > - if (db->ood_last_cmt_rev != eb->anchor_status->entry->revision) > + if (db->ood_last_cmt_rev != eb->anchor_status->revision) > { > eb->anchor_status->ood_last_cmt_rev = db->ood_last_cmt_rev; > eb->anchor_status->ood_last_cmt_date = db->ood_last_cmt_date;
entry->revision and status->revision have different semantics. I don't know if you can make this change (without more thought upon the context). Please review the implications here. >... Cheers, -g