summaryrefslogtreecommitdiff
path: root/refs.c
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2015-05-11 15:25:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-05-11 18:50:18 (GMT)
commit385e8af5a2d1056b75428eea810bce65d2c83363 (patch)
tree99f6253b848e75c57cad476e75689a9a709f828d /refs.c
parent8bfac19ab4844a63e2f660fcaf4fec4fbe08e47f (diff)
downloadgit-385e8af5a2d1056b75428eea810bce65d2c83363.zip
git-385e8af5a2d1056b75428eea810bce65d2c83363.tar.gz
git-385e8af5a2d1056b75428eea810bce65d2c83363.tar.bz2
report_refname_conflict(): inline function
It wasn't pulling its weight. And we are about to need code similar to this where no ref_entry is available and with more diverse error messages. Rather than try to generalize the function, just inline it. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/refs.c b/refs.c
index 6bdd34f..7422594 100644
--- a/refs.c
+++ b/refs.c
@@ -857,12 +857,6 @@ static int nonmatching_ref_fn(struct ref_entry *entry, void *vdata)
return 1;
}
-static void report_refname_conflict(struct ref_entry *entry,
- const char *refname)
-{
- error("'%s' exists; cannot create '%s'", entry->name, refname);
-}
-
/*
* Return true iff a reference named refname could be created without
* conflicting with the name of an existing reference in dir. If
@@ -918,7 +912,7 @@ static int is_refname_available(const char *refname,
*/
return 1;
}
- report_refname_conflict(entry, refname);
+ error("'%s' exists; cannot create '%s'", entry->name, refname);
return 0;
}
@@ -969,7 +963,7 @@ static int is_refname_available(const char *refname,
if (!do_for_each_entry_in_dir(dir, 0, nonmatching_ref_fn, &data))
return 1;
- report_refname_conflict(data.found, refname);
+ error("'%s' exists; cannot create '%s'", data.found->name, refname);
return 0;
}