Commit 8c1d5d48 by Carlos Martín Nieto

Use the internal sort in the local transport

Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
parent a655cc35
...@@ -14,14 +14,6 @@ typedef struct { ...@@ -14,14 +14,6 @@ typedef struct {
git_vector *refs; git_vector *refs;
} transport_local; } transport_local;
static int cmp_refs(const void *a, const void *b)
{
const char *stra = *(const char * const *) a;
const char *strb = *(const char * const *) b;
return strcmp(stra, strb);
}
/* /*
* Try to open the url as a git directory. The direction doesn't * Try to open the url as a git directory. The direction doesn't
* matter in this case because we're calulating the heads ourselves. * matter in this case because we're calulating the heads ourselves.
...@@ -148,7 +140,7 @@ static int local_ls(git_transport *transport, git_headarray *array) ...@@ -148,7 +140,7 @@ static int local_ls(git_transport *transport, git_headarray *array)
return error; return error;
/* Sort the references first */ /* Sort the references first */
qsort(refs.strings, refs.count, sizeof(char *), cmp_refs); git__tsort((void **)refs.strings, refs.count, (git_vector_cmp) strcmp);
/* Add HEAD */ /* Add HEAD */
error = add_ref(GIT_HEAD_FILE, repo, vec); error = add_ref(GIT_HEAD_FILE, repo, vec);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment