]> git.proxmox.com Git - libgit2.git/commitdiff
repository: export git_repository_config_autoload
authorCarlos Martín Nieto <carlos@cmartin.tk>
Fri, 30 Sep 2011 04:26:29 +0000 (06:26 +0200)
committerCarlos Martín Nieto <carlos@cmartin.tk>
Fri, 30 Sep 2011 04:28:22 +0000 (06:28 +0200)
Take the opportunity to finish the comment about this function.

Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
include/git2/repository.h

index b1fb5db83608ed53f91838cecead8a76dc51016e..161826b26489d83223e8c3aa5a02386533964821 100644 (file)
@@ -319,12 +319,13 @@ GIT_EXTERN(int) git_repository_config(git_config **out,
  *
  * A wrapper around `git_repository_config` that tries to guess where
  * the global and system config files are located. No error is
- * reported if either of these files
+ * reported if either of these files are missing at the guessed
+ * locations.
  *
  * @param out the repository's configuration
  * @param repo the repository for which to get the config
  */
-int git_repository_config_autoload(
+GIT_EXTERN(int) git_repository_config_autoload(
                git_config **out,
                git_repository *repo);