summaryrefslogtreecommitdiff
path: root/path.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-08-22 21:04:56 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-08-22 21:04:56 (GMT)
commit13d6ec913330ba90fb1a67ec5789e437f8ac4193 (patch)
treef7923b01c836c79e4d546ffc0d7ab27871295c1f /path.c
parentf696543dad6c7ba27b0c4fab167a5687263a9ba0 (diff)
downloadgit-13d6ec913330ba90fb1a67ec5789e437f8ac4193.zip
git-13d6ec913330ba90fb1a67ec5789e437f8ac4193.tar.gz
git-13d6ec913330ba90fb1a67ec5789e437f8ac4193.tar.bz2
read_gitfile_gently(): rename misnamed function to read_gitfile()
The function was not gentle at all to the callers and died without giving them a chance to deal with possible errors. Rename it to read_gitfile(), and update all the callers. As no existing caller needs a true "gently" variant, we do not bother adding one at this point. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'path.c')
-rw-r--r--path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/path.c b/path.c
index 4d73cc9..6f3f5d5 100644
--- a/path.c
+++ b/path.c
@@ -139,7 +139,7 @@ char *git_path_submodule(const char *path, const char *fmt, ...)
strbuf_addch(&buf, '/');
strbuf_addstr(&buf, ".git");
- git_dir = read_gitfile_gently(buf.buf);
+ git_dir = read_gitfile(buf.buf);
if (git_dir) {
strbuf_reset(&buf);
strbuf_addstr(&buf, git_dir);