]> git.ipfire.org Git - thirdparty/git.git/commitdiff
mingw: fix typo in an error message from ownership check
authorDaniël Haazen <danielhaazen@hotmail.com>
Mon, 19 Dec 2022 02:26:50 +0000 (02:26 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 20 Dec 2022 00:32:46 +0000 (09:32 +0900)
When a repository is on a FAT32 file system, the user sees a message
that the path ownership cannot be determined.  Fix a typo in the
message.

Signed-off-by: Daniël Haazen <danielhaazen@hotmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
compat/mingw.c

index 901375d58415a3ae21f03a15e7b78da6f8b08efa..9e59a56f2702f55673a4a0f81857b0ff382e23aa 100644 (file)
@@ -2749,7 +2749,7 @@ int is_path_owned_by_current_sid(const char *path, struct strbuf *report)
                        /*
                         * On FAT32 volumes, ownership is not actually recorded.
                         */
-                       strbuf_addf(report, "'%s' is on a file system that does"
+                       strbuf_addf(report, "'%s' is on a file system that does "
                                    "not record ownership\n", path);
                } else if (report) {
                        LPSTR str1, str2, to_free1 = NULL, to_free2 = NULL;