summaryrefslogtreecommitdiff
path: root/lib/altsvc.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-09-02 12:06:20 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-09-02 22:41:58 +0200
commit9b3f888a00fe0c796e8ef7f00d03bb2adc2baa4e (patch)
treed8807f4db74c55c7fc4f23004392d8bb0892b658 /lib/altsvc.h
parent8bdc4f8aeee98802e16426adfb79855df918d47c (diff)
downloadcurl-9b3f888a00fe0c796e8ef7f00d03bb2adc2baa4e.tar.gz
llist: make it "struct Curl_llist"
As internal global names should use captical C. Closes #5906
Diffstat (limited to 'lib/altsvc.h')
-rw-r--r--lib/altsvc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/altsvc.h b/lib/altsvc.h
index 578a4fbfb..df2750493 100644
--- a/lib/altsvc.h
+++ b/lib/altsvc.h
@@ -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 */
};