Rev 1452: Canonicalize path. in http://people.samba.org/bzr/jelmer/bzr-svn/trunk

Jelmer Vernooij jelmer at samba.org
Tue Jul 8 01:57:40 BST 2008


At http://people.samba.org/bzr/jelmer/bzr-svn/trunk

------------------------------------------------------------
revno: 1452
revision-id: jelmer at samba.org-20080708005739-cvii1sajo4edx4zx
parent: jelmer at samba.org-20080708003135-t7e195i71y8cxaom
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: 0.4
timestamp: Tue 2008-07-08 02:57:39 +0200
message:
  Canonicalize path.
modified:
  wc.c                           wc.pyx-20080313142018-10l8l23vha2j9e6b-1
=== modified file 'wc.c'
--- a/wc.c	2008-07-04 04:46:58 +0000
+++ b/wc.c	2008-07-08 00:57:39 +0000
@@ -19,6 +19,7 @@
 #include <Python.h>
 #include <apr_general.h>
 #include <svn_wc.h>
+#include <svn_path.h>
 #include <structmember.h>
 #include <stdbool.h>
 
@@ -425,7 +426,7 @@
 	if (temp_pool == NULL)
 		return NULL;
 	RUN_SVN_WITH_POOL(temp_pool, svn_wc_get_prop_diffs(&propchanges, &original_props, 
-				path, admobj->adm, temp_pool));
+				svn_path_canonicalize(path, temp_pool), admobj->adm, temp_pool));
 	py_propchanges = PyList_New(propchanges->nelts);
 	for (i = 0; i < propchanges->nelts; i++) {
 		el = APR_ARRAY_IDX(propchanges, i, svn_prop_t);




More information about the bazaar-commits mailing list