1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-06 22:49:02 +00:00

Use svn_client_checkout2 instead of svn_client_checkout3.

This is for compatibility with the MacOSX10.5 SDK.
This commit is contained in:
david
2011-12-20 02:31:31 +00:00
parent 316a6f1f8b
commit 7c8bd6b699

View File

@@ -820,11 +820,10 @@ static svn_error_t *checkout_svn(const char *url, const char *path)
NULL, /* cancel_baton */
pool);
err = svn_client_checkout3(&revnum, url, path,
err = svn_client_checkout2(&revnum, url, path,
&peg_revision, &revision,
svn_depth_infinity,
TRUE, /* recurse */
TRUE, /* ignore_externals */
FALSE, /* allow_unver_obstructions */
ctx, pool);
svn_pool_destroy(pool);
if (err != NULL)