diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-25T23·06+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-25T23·06+0100 |
commit | 93ba78d6f4632ef1c5228965e3edc8c0faf88c1e (patch) | |
tree | 85730c182a9f5f492ade8e8ccdb1c2356f9900bd /third_party/git/url.c | |
parent | 6f8fbf4aa4b1654ab27d4829e114538761817de0 (diff) |
revert(3p/git): Revert merge of git upstream at v2.26.2 r/852
This causes cgit to serve error pages, which is undesirable. This reverts commit 5229c9b232de5bfa959ad6ebbb4c8192ac513352, reversing changes made to f2b211131f2347342dde63975b09cf603149f1a3.
Diffstat (limited to 'third_party/git/url.c')
-rw-r--r-- | third_party/git/url.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/third_party/git/url.c b/third_party/git/url.c index e04bd60b6bea..1b8ef78ceab0 100644 --- a/third_party/git/url.c +++ b/third_party/git/url.c @@ -5,7 +5,7 @@ int is_urlschemechar(int first_flag, int ch) { /* * The set of valid URL schemes, as per STD66 (RFC3986) is - * '[A-Za-z][A-Za-z0-9+.-]*'. But use slightly looser check + * '[A-Za-z][A-Za-z0-9+.-]*'. But use sightly looser check * of '[A-Za-z0-9][A-Za-z0-9+.-]*' because earlier version * of check used '[A-Za-z0-9]+' so not to break any remote * helpers. @@ -86,12 +86,6 @@ char *url_decode_mem(const char *url, int len) return url_decode_internal(&url, len, NULL, &out, 0); } -char *url_percent_decode(const char *encoded) -{ - struct strbuf out = STRBUF_INIT; - return url_decode_internal(&encoded, strlen(encoded), NULL, &out, 0); -} - char *url_decode_parameter_name(const char **query) { struct strbuf out = STRBUF_INIT; |