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

------------------------------------------------------------
revno: 1735
revision-id: [EMAIL PROTECTED]
parent: [EMAIL PROTECTED]
committer: Jelmer Vernooij <[EMAIL PROTECTED]>
branch nick: 0.4
timestamp: Sat 2008-11-08 18:20:32 +0100
message:
  Sanitize paths in client.
modified:
  client.c                       client.pyx-20080313235339-wbyjbw2namuiql8f-1
=== modified file 'client.c'
--- a/client.c  2008-11-03 13:39:48 +0000
+++ b/client.c  2008-11-08 17:20:32 +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