summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2015-08-10 09:36:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-08-10 22:37:13 (GMT)
commit07e3070d2aa69b0c8f1da5f103a87125ff4baaea (patch)
treed58adb8eff1cf700ff4414a4742cfc8a83460866 /cache.h
parentf5b2dec1657e09a22f8b2aefa25d022988e3e467 (diff)
downloadgit-07e3070d2aa69b0c8f1da5f103a87125ff4baaea.zip
git-07e3070d2aa69b0c8f1da5f103a87125ff4baaea.tar.gz
git-07e3070d2aa69b0c8f1da5f103a87125ff4baaea.tar.bz2
path.c: drop git_path_submodule
There are no callers of the slightly-dangerous static-buffer git_path_submodule left. Let's drop it. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/cache.h b/cache.h
index 6f74f33..7a4fa90 100644
--- a/cache.h
+++ b/cache.h
@@ -713,12 +713,11 @@ extern int check_repository_format(void);
* the repository directory (git_path), or in a submodule's repository
* directory (git_path_submodule). In all cases, note that the result
* may be overwritten by another call to _any_ of the functions. Consider
- * using the safer "dup" or "strbuf" formats below.
+ * using the safer "dup" or "strbuf" formats below (in some cases, the
+ * unsafe versions have already been removed).
*/
extern const char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
extern const char *git_path(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
-extern const char *git_path_submodule(const char *path, const char *fmt, ...)
- __attribute__((format (printf, 2, 3)));
extern char *mksnpath(char *buf, size_t n, const char *fmt, ...)
__attribute__((format (printf, 3, 4)));