llist: make it "struct Curl_llist"

As internal global names should use captical C.

Closes #5906
This commit is contained in:
Daniel Stenberg 2020-09-02 12:06:20 +02:00
parent 8bdc4f8aee
commit 9b3f888a00
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
17 changed files with 102 additions and 102 deletions

View file

@ -46,12 +46,12 @@ struct altsvc {
time_t expires;
bool persist;
int prio;
struct curl_llist_element node;
struct Curl_llist_element node;
};
struct altsvcinfo {
char *filename;
struct curl_llist list; /* list of entries */
struct Curl_llist list; /* list of entries */
long flags; /* the publicly set bitmask */
};