From 7c8bd6b699c22cefa46c3140e49f89ea8a4dd226 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 20 Dec 2011 02:31:31 +0000 Subject: [PATCH] Use svn_client_checkout2 instead of svn_client_checkout3. This is for compatibility with the MacOSX10.5 SDK. --- nmap-update/nmap-update.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nmap-update/nmap-update.c b/nmap-update/nmap-update.c index b84cf86bb..f339ed9fa 100644 --- a/nmap-update/nmap-update.c +++ b/nmap-update/nmap-update.c @@ -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)