mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 16:57:06 +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:
parent
316a6f1f8b
commit
7c8bd6b699
1 changed files with 2 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue