From bab8d28e774c255a326ad5592af6351e4925efcb Mon Sep 17 00:00:00 2001 From: Jeff King Date: Mon, 12 Dec 2011 19:49:59 -0500 Subject: [PATCH] connect.c: drop path_match function This function was used for comparing local and remote ref names during fetch (which makes it a candidate for "most confusingly named function of the year"). It no longer has any callers, so let's get rid of it. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- cache.h | 1 - connect.c | 21 --------------------- 2 files changed, 22 deletions(-) diff --git a/cache.h b/cache.h index 451960175c..79c612fc2f 100644 --- a/cache.h +++ b/cache.h @@ -1028,7 +1028,6 @@ extern char *git_getpass(const char *prompt); extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags); extern int finish_connect(struct child_process *conn); extern int git_connection_is_socket(struct child_process *conn); -extern int path_match(const char *path, int nr, char **match); struct extra_have_objects { int nr, alloc; unsigned char (*array)[20]; diff --git a/connect.c b/connect.c index 48df90bfe5..2a0a0401af 100644 --- a/connect.c +++ b/connect.c @@ -105,27 +105,6 @@ int server_supports(const char *feature) strstr(server_capabilities, feature) != NULL; } -int path_match(const char *path, int nr, char **match) -{ - int i; - int pathlen = strlen(path); - - for (i = 0; i < nr; i++) { - char *s = match[i]; - int len = strlen(s); - - if (!len || len > pathlen) - continue; - if (memcmp(path + pathlen - len, s, len)) - continue; - if (pathlen > len && path[pathlen - len - 1] != '/') - continue; - *s = 0; - return (i + 1); - } - return 0; -} - enum protocol { PROTO_LOCAL = 1, PROTO_SSH, -- 2.11.4.GIT