diff options
author | Nanako Shiraishi <nanako3@lavabit.com> | 2008-09-25 18:41:00 +0900 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-09-25 08:00:28 -0700 |
commit | 697d7f5dad805fd6d9d57e07d5019f97fa9a0d4b (patch) | |
tree | 82da913f88c7f41092ae05e74e4ec0228e337595 /remote.h | |
parent | 3b9b1163c0a316c50715c6bd7c731b4703f89f55 (diff) | |
download | git-697d7f5dad805fd6d9d57e07d5019f97fa9a0d4b.tar.gz |
remote.c: make free_ref(), parse_push_refspec() and free_refspecs() static.
These functions are not used by any other file.
Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'remote.h')
-rw-r--r-- | remote.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -77,8 +77,6 @@ void ref_remove_duplicates(struct ref *ref_map); int valid_fetch_refspec(const char *refspec); struct refspec *parse_fetch_refspec(int nr_refspec, const char **refspec); -struct refspec *parse_push_refspec(int nr_refspec, const char **refspec); -void free_refspecs(struct refspec *refspec, int nr_refspec); int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail, int nr_refspec, const char **refspec, int all); |