At file:///data/jelmer/bzr-svn/trunk/

------------------------------------------------------------
revno: 1962
revision-id: [EMAIL PROTECTED]
parent: [EMAIL PROTECTED]
committer: Jelmer Vernooij <[EMAIL PROTECTED]>
branch nick: trunk
timestamp: Sat 2008-11-08 18:20:38 +0100
message:
  Sanitize paths in client.
modified:
  subvertpy/subvertpy/client.c   client.pyx-20080313235339-wbyjbw2namuiql8f-1
=== modified file 'subvertpy/subvertpy/client.c'
--- a/subvertpy/subvertpy/client.c      2008-11-08 14:31:15 +0000
+++ b/subvertpy/subvertpy/client.c      2008-11-08 17:20:38 +0000
@@ -373,7 +373,7 @@
        temp_pool = Pool(NULL);
        if (temp_pool == NULL)
                return NULL;
-       if (!string_list_to_apr_array(temp_pool, targets, &apr_targets)) {
+       if (!path_list_to_apr_array(temp_pool, targets, &apr_targets)) {
                apr_pool_destroy(temp_pool);
                return NULL;
        }
@@ -402,7 +402,7 @@
        temp_pool = Pool(NULL);
        if (temp_pool == NULL)
                return NULL;
-       if (!string_list_to_apr_array(temp_pool, paths, &apr_paths)) {
+       if (!path_list_to_apr_array(temp_pool, paths, &apr_paths)) {
                apr_pool_destroy(temp_pool);
                return NULL;
        }
@@ -515,7 +515,7 @@
        temp_pool = Pool(NULL);
        if (temp_pool == NULL)
                return NULL;
-       if (!string_list_to_apr_array(temp_pool, paths, &apr_paths)) {
+       if (!path_list_to_apr_array(temp_pool, paths, &apr_paths)) {
                apr_pool_destroy(temp_pool);
                return NULL;
        }


-- 
bazaar-commits mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/bazaar-commits

Reply via email to