Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Steven J. Magnani wrote: > Hi, > > The following code in cvsnt-2.5.01.1976/src/update.cpp looks like a bug > to me: > > void set_global_update_options(int _merge_from_branchpoint, int > _conflict_3way, int _case_sensitive, int _force_checkout_time) > { > force_checkout_time=_merge_from_branchpoint; > conflict_3way=_conflict_3way; > case_sensitive=_case_sensitive; > force_checkout_time=_force_checkout_time; > } > > Shouldn't the first line in the function be: > > merge_from_branchpoint=_merge_from_branchpoint; > Yes. Thanks for that. Tony