From: Nguyễn Thái Ngọc Duy Date: Sun, 30 Nov 2014 08:24:30 +0000 (+0700) Subject: path.c: group git_path(), git_pathdup() and strbuf_git_path() together X-Git-Tag: v2.5.0-rc0~143^2~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57a23b770a839786f2eaae4a9dde779149bfb812;p=git path.c: group git_path(), git_pathdup() and strbuf_git_path() together Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/path.c b/path.c index 6991103d43..df0f75ba4f 100644 --- a/path.c +++ b/path.c @@ -78,6 +78,16 @@ void strbuf_git_path(struct strbuf *sb, const char *fmt, ...) va_end(args); } +const char *git_path(const char *fmt, ...) +{ + struct strbuf *pathname = get_pathname(); + va_list args; + va_start(args, fmt); + do_git_path(pathname, fmt, args); + va_end(args); + return pathname->buf; +} + char *git_pathdup(const char *fmt, ...) { struct strbuf path = STRBUF_INIT; @@ -109,16 +119,6 @@ const char *mkpath(const char *fmt, ...) return cleanup_path(pathname->buf); } -const char *git_path(const char *fmt, ...) -{ - struct strbuf *pathname = get_pathname(); - va_list args; - va_start(args, fmt); - do_git_path(pathname, fmt, args); - va_end(args); - return pathname->buf; -} - void home_config_paths(char **global, char **xdg, char *file) { char *xdg_home = getenv("XDG_CONFIG_HOME");