diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-08-22 14:04:56 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-22 14:04:56 -0700 |
commit | 13d6ec913330ba90fb1a67ec5789e437f8ac4193 (patch) | |
tree | f7923b01c836c79e4d546ffc0d7ab27871295c1f /builtin/init-db.c | |
parent | f696543dad6c7ba27b0c4fab167a5687263a9ba0 (diff) | |
download | git-13d6ec913330ba90fb1a67ec5789e437f8ac4193.tar.gz |
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 'builtin/init-db.c')
-rw-r--r-- | builtin/init-db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/init-db.c b/builtin/init-db.c index 025aa47c80..d07554c884 100644 --- a/builtin/init-db.c +++ b/builtin/init-db.c @@ -347,7 +347,7 @@ static void separate_git_dir(const char *git_dir) const char *src; if (S_ISREG(st.st_mode)) - src = read_gitfile_gently(git_link); + src = read_gitfile(git_link); else if (S_ISDIR(st.st_mode)) src = git_link; else |