~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to subversion/libsvn_wc/adm_ops.c

  • Committer: Max Bowsher
  • Date: 2012-10-25 00:08:47 UTC
  • mfrom: (44.1.49 precise)
  • Revision ID: _@maxb.eu-20121025000847-8xxg7ea4qdqio0w4
Tags: 1.7.7-0svn2~oneiric+svn1
MergeĀ 1.7.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
1935
1935
        {
1936
1936
          svn_wc__db_kind_t kind;
1937
1937
 
1938
 
          SVN_ERR(svn_wc__db_read_kind(&kind, db, local_abspath, TRUE,
 
1938
          SVN_ERR(svn_wc__db_read_kind(&kind, db, child_abspath, TRUE,
1939
1939
                                       iterpool));
1940
1940
          if (kind != svn_wc__db_kind_file)
1941
1941
            continue;
2447
2447
                       void *cancel_baton,
2448
2448
                       apr_pool_t *scratch_pool)
2449
2449
{
2450
 
  struct get_cl_fn_baton gnb = { wc_ctx->db, NULL,
2451
 
                                 callback_func, callback_baton };
 
2450
  struct get_cl_fn_baton gnb;
 
2451
  gnb.db = wc_ctx->db;
 
2452
  gnb.clhash = NULL;
 
2453
  gnb.callback_func = callback_func;
 
2454
  gnb.callback_baton = callback_baton;
2452
2455
 
2453
2456
  if (changelist_filter)
2454
2457
    SVN_ERR(svn_hash_from_cstring_keys(&gnb.clhash, changelist_filter,