~ubuntu-branches/debian/sid/subversion/sid

« back to all changes in this revision

Viewing changes to subversion/svn/proplist-cmd.c

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2015-08-07 21:32:47 UTC
  • mfrom: (0.2.15) (4.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20150807213247-ozyewtmgsr6tkewl
Tags: 1.9.0-1
* Upload to unstable
* New upstream release.
  + Security fixes
    - CVE-2015-3184: Mixed anonymous/authenticated path-based authz with
      httpd 2.4
    - CVE-2015-3187: svn_repos_trace_node_locations() reveals paths hidden
      by authz
* Add >= 2.7 requirement for python-all-dev Build-Depends, needed to run
  tests.
* Remove Build-Conflicts against ruby-test-unit.  (Closes: #791844)
* Remove patches/apache_module_dependency in favor of expressing the
  dependencies in authz_svn.load/dav_svn.load.
* Build-Depend on apache2-dev (>= 2.4.16) to ensure ap_some_authn_required()
  is available when building mod_authz_svn and Depend on apache2-bin (>=
  2.4.16) for runtime support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
            name_local = svn_dirent_local_style(iprop->path_or_url, iterpool);
84
84
 
85
85
          svn_xml_make_open_tag(&sb, iterpool, svn_xml_normal, "target",
86
 
                            "path", name_local, NULL);
 
86
                            "path", name_local, SVN_VA_NULL);
87
87
          SVN_ERR(svn_cmdline__print_xml_prop_hash(&sb, iprop->prop_hash,
88
88
                                                   (! opt_state->verbose),
89
89
                                                   TRUE, iterpool));
105
105
    {
106
106
      /* "<target ...>" */
107
107
        svn_xml_make_open_tag(&sb, pool, svn_xml_normal, "target",
108
 
                              "path", name_local, NULL);
 
108
                              "path", name_local, SVN_VA_NULL);
109
109
 
110
110
        SVN_ERR(svn_cmdline__print_xml_prop_hash(&sb, prop_hash,
111
111
                                                 (! opt_state->verbose),
230
230
 
231
231
          svn_xml_make_open_tag(&sb, scratch_pool, svn_xml_normal,
232
232
                                "revprops",
233
 
                                "rev", revstr, NULL);
 
233
                                "rev", revstr, SVN_VA_NULL);
234
234
          SVN_ERR(svn_cmdline__print_xml_prop_hash(&sb, proplist,
235
235
                                                   (! opt_state->verbose),
236
236
                                                   FALSE, scratch_pool));
299
299
                   errors, opt_state->quiet,
300
300
                   SVN_ERR_UNVERSIONED_RESOURCE,
301
301
                   SVN_ERR_ENTRY_NOT_FOUND,
302
 
                   SVN_NO_ERROR));
 
302
                   0));
303
303
        }
304
304
      svn_pool_destroy(iterpool);
305
305