From 93ba78d6f4632ef1c5228965e3edc8c0faf88c1e Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 26 May 2020 00:06:52 +0100 Subject: revert(3p/git): Revert merge of git upstream at v2.26.2 This causes cgit to serve error pages, which is undesirable. This reverts commit 5229c9b232de5bfa959ad6ebbb4c8192ac513352, reversing changes made to f2b211131f2347342dde63975b09cf603149f1a3. --- third_party/git/string-list.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'third_party/git/string-list.h') diff --git a/third_party/git/string-list.h b/third_party/git/string-list.h index 6c5d274126ac..f964399949ce 100644 --- a/third_party/git/string-list.h +++ b/third_party/git/string-list.h @@ -4,8 +4,7 @@ /** * The string_list API offers a data structure and functions to handle * sorted and unsorted arrays of strings. A "sorted" list is one whose - * entries are sorted by string value in the order specified by the `cmp` - * member (`strcmp()` by default). + * entries are sorted by string value in `strcmp()` order. * * The caller: * @@ -180,7 +179,7 @@ void string_list_remove(struct string_list *list, const char *string, /** * Check if the given string is part of a sorted list. If it is part of the list, - * return the corresponding string_list_item, NULL otherwise. + * return the coresponding string_list_item, NULL otherwise. */ struct string_list_item *string_list_lookup(struct string_list *list, const char *string); @@ -210,8 +209,7 @@ struct string_list_item *string_list_append(struct string_list *list, const char struct string_list_item *string_list_append_nodup(struct string_list *list, char *string); /** - * Sort the list's entries by string value in order specified by list->cmp - * (strcmp() if list->cmp is NULL). + * Sort the list's entries by string value in `strcmp()` order. */ void string_list_sort(struct string_list *list); -- cgit 1.4.1