Documentation/SubmittingPatches: unify whitespace/tabs for the DCO
[gitweb.git] / config.c
index 15a298357796ffa80f7fb2258e55cf95be0b8895..d5446d2b631e0bc13e78d12fed2c63b0e29aae0a 100644 (file)
--- a/config.c
+++ b/config.c
@@ -896,6 +896,16 @@ static int git_default_core_config(const char *var, const char *value)
                return 0;
        }
 
+       if (!strcmp(var, "core.protecthfs")) {
+               protect_hfs = git_config_bool(var, value);
+               return 0;
+       }
+
+       if (!strcmp(var, "core.protectntfs")) {
+               protect_ntfs = git_config_bool(var, value);
+               return 0;
+       }
+
        /* Add other config variables here and to Documentation/config.txt. */
        return 0;
 }