We'll need it in the next patch. Signed-off-by: Dennis Kaarsemaker <git@xxxxxxxxxxxxxxx> --- connect.c | 3 +-- connect.h | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/connect.c b/connect.c index fd7ffe1..9e64b0b 100644 --- a/connect.c +++ b/connect.c @@ -12,7 +12,6 @@ #include "transport.h" static char *server_capabilities; -static const char *parse_feature_value(const char *, const char *, int *); static int check_ref(const char *name, unsigned int flags) { @@ -179,7 +178,7 @@ struct ref **get_remote_heads(int in, char *src_buf, size_t src_len, return list; } -static const char *parse_feature_value(const char *feature_list, const char *feature, int *lenp) +const char *parse_feature_value(const char *feature_list, const char *feature, int *lenp) { int len; diff --git a/connect.h b/connect.h index c41a685..7daf702 100644 --- a/connect.h +++ b/connect.h @@ -9,6 +9,7 @@ extern int git_connection_is_socket(struct child_process *conn); extern int server_supports(const char *feature); extern int parse_feature_request(const char *features, const char *feature); extern const char *server_feature_value(const char *feature, int *len_ret); +extern const char *parse_feature_value(const char *, const char *, int *); extern int url_is_local_not_ssh(const char *url); #endif -- 2.7.0-91-gf04ef09 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html