]> granicus.if.org Git - git/commitdiff
setup_git_directory(): use is_dir_sep() helper
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Tue, 7 Mar 2017 14:32:32 +0000 (15:32 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 7 Mar 2017 23:18:55 +0000 (15:18 -0800)
It is okay in practice to test for forward slashes in the output of
getcwd(), because we go out of our way to convert backslashes to forward
slashes in getcwd()'s output on Windows.

Still, the correct way to test for a dir separator is by using the
helper function we introduced for that very purpose. It also serves as a
good documentation what the code tries to do (not "how").

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
setup.c

diff --git a/setup.c b/setup.c
index 967f289f1ef07d78f4b680e1d880e2fa86215371..4a15b1056760235d9e684ea22a6bb70c7ad75598 100644 (file)
--- a/setup.c
+++ b/setup.c
@@ -910,7 +910,9 @@ static const char *setup_git_directory_gently_1(int *nongit_ok)
                        return setup_bare_git_dir(&cwd, offset, nongit_ok);
 
                offset_parent = offset;
-               while (--offset_parent > ceil_offset && cwd.buf[offset_parent] != '/');
+               while (--offset_parent > ceil_offset &&
+                      !is_dir_sep(cwd.buf[offset_parent]))
+                       ; /* continue */
                if (offset_parent <= ceil_offset)
                        return setup_nongit(cwd.buf, nongit_ok);
                if (one_filesystem) {