Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-04-24 08:07:45 +0300
committerJunio C Hamano <gitster@pobox.com>2017-04-24 08:07:45 +0300
commit4c01f67d9102942cc7f0a737de4c609a6ac1832e (patch)
treeb1e2e725ac7fb708dba5a732271d45d675ed5bfd /cache.h
parent848d9a9bb7407cd3a2d45941f732b2ddc32588a7 (diff)
parent37ee680d9b90fe4c4fc5be4e14f17baf49f6ce59 (diff)
Merge branch 'dt/http-postbuffer-can-be-large'
Allow the http.postbuffer configuration variable to be set to a size that can be expressed in size_t, which can be larger than ulong on some platforms. * dt/http-postbuffer-can-be-large: http.postbuffer: allow full range of ssize_t values
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index ba27595d54..e5cc06987a 100644
--- a/cache.h
+++ b/cache.h
@@ -1908,6 +1908,7 @@ extern int git_parse_maybe_bool(const char *);
extern int git_config_int(const char *, const char *);
extern int64_t git_config_int64(const char *, const char *);
extern unsigned long git_config_ulong(const char *, const char *);
+extern ssize_t git_config_ssize_t(const char *, const char *);
extern int git_config_bool_or_int(const char *, const char *, int *);
extern int git_config_bool(const char *, const char *);
extern int git_config_maybe_bool(const char *, const char *);