Author: steveking
Date: Thu Aug 1 12:00:01 2013
New Revision: 1509186
URL: http://svn.apache.org/r1509186
Log:
Followup to r1507382: Document that the config_dir paramete can be passed as
NULL and that this means using the default config dir location.
* subversion/include/svn_config.h
(svn_config_walk_auth_data): Document that config_dir can be NULL
Modified:
subversion/trunk/subversion/include/svn_config.h
Modified: subversion/trunk/subversion/include/svn_config.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_config.h?rev=1509186&r1=1509185&r2=1509186&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_config.h (original)
+++ subversion/trunk/subversion/include/svn_config.h Thu Aug 1 12:00:01 2013
@@ -736,6 +736,10 @@ typedef svn_error_t *
* under @a config_dir. If the callback sets its delete_cred return
* flag, delete the associated credential.
*
+ * If @a config_dir is not NULL, it must point to an alternative
+ * config directory location. If it is NULL, the default location
+ * is used.
+ *
* @note Removing credentials from the config-based disk store will
* not purge them from any open svn_auth_baton_t instance. Consider
* using svn_auth_forget_credentials() -- from the @a cleanup_func,