Ben Collins-Sussman wrote:
> On 1/3/07, Hyrum K. Wright <hyrum_wright@mail.utexas.edu> wrote:
>
>> +svn_error_t *
>> +svn_client__resolve_revisions(svn_opt_revision_t *peg_rev,
>> + svn_opt_revision_t *op_rev,
>> + svn_boolean_t is_url)
>> +{
>> + if (peg_rev->kind == svn_opt_revision_unspecified)
>> + {
>> + if (is_url)
>> + peg_rev->kind = svn_opt_revision_head;
>> + else
>> + peg_rev->kind = svn_opt_revision_base;
^
Hmmm...on second thought, should this be svn_opt_revision_working, to
make sure that we pick up local modifications?
>> + }
>> +
>> + if (op_rev->kind == svn_opt_revision_unspecified)
>> + op_rev->kind = peg_rev->kind;
>> +
>> + return SVN_NO_ERROR;
>> +}
>> +
Received on Wed Jan 3 22:41:51 2007