git.el: Refresh files from their real state upon commit.
[gitweb.git] / fast-import.c
index 4646c056f32818549635b6ecc6b1088dc08ff469..74597c901c4e7bff7ed5344719c3162b4e096c3a 100644 (file)
@@ -642,8 +642,9 @@ static struct branch *new_branch(const char *name)
        if (b)
                die("Invalid attempt to create duplicate branch: %s", name);
        switch (check_ref_format(name)) {
-       case  0: break; /* its valid */
-       case -2: break; /* valid, but too few '/', allow anyway */
+       case 0: break; /* its valid */
+       case CHECK_REF_FORMAT_ONELEVEL:
+               break; /* valid, but too few '/', allow anyway */
        default:
                die("Branch name doesn't conform to GIT standards: %s", name);
        }