From 89d52c8f4f44ca50ebfc64a1c2b42dde51fc9012 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 19 Sep 2012 15:16:24 +0000 Subject: [PATCH] Declare the function name we actually use. It was nmap_update_svn_cmdline_create_auth_baton, but should be nmap_update_svn_cmdline_setup_auth_baton. This was missed in r27746, which otherwise was making the same change. This was noticed by John Spencer. http://seclists.org/nmap-dev/2012/q3/942 --- nmap-update/nmap-update.c | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/nmap-update/nmap-update.c b/nmap-update/nmap-update.c index 1380f0e76..791a91449 100644 --- a/nmap-update/nmap-update.c +++ b/nmap-update/nmap-update.c @@ -39,17 +39,16 @@ /* From svn_auth.c. */ svn_error_t * -nmap_update_svn_cmdline_create_auth_baton(svn_auth_baton_t **ab, - svn_boolean_t non_interactive, - const char *auth_username, - const char *auth_password, - const char *config_dir, - svn_boolean_t no_auth_cache, - svn_boolean_t trust_server_cert, - svn_config_t *cfg, - svn_cancel_func_t cancel_func, - void *cancel_baton, - apr_pool_t *pool); +nmap_update_svn_cmdline_setup_auth_baton(svn_auth_baton_t **ab, + svn_boolean_t non_interactive, + const char *auth_username, + const char *auth_password, + const char *config_dir, + svn_boolean_t no_auth_cache, + svn_config_t *cfg, + svn_cancel_func_t cancel_func, + void *cancel_baton, + apr_pool_t *pool); #include "default_channel.h"