From 013e7c7ff498aae82d799f80da37fbd395545456 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Mon, 4 Jul 2005 13:24:30 -0700 Subject: Move ref path matching to connect.c library It's a generic thing for matching refs from the other side. --- send-pack.c | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'send-pack.c') diff --git a/send-pack.c b/send-pack.c index 57e88a7637..f098acb5fd 100644 --- a/send-pack.c +++ b/send-pack.c @@ -4,27 +4,6 @@ static const char send_pack_usage[] = "git-send-pack [--exec=other] destination [heads]*"; static const char *exec = "git-receive-pack"; -static 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 1; - } - return 0; -} - struct ref { struct ref *next; unsigned char old_sha1[20]; -- cgit v1.3