diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-02 12:06:20 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-02 22:41:58 +0200 |
commit | 9b3f888a00fe0c796e8ef7f00d03bb2adc2baa4e (patch) | |
tree | d8807f4db74c55c7fc4f23004392d8bb0892b658 /lib/url.c | |
parent | 8bdc4f8aeee98802e16426adfb79855df918d47c (diff) | |
download | curl-9b3f888a00fe0c796e8ef7f00d03bb2adc2baa4e.tar.gz |
llist: make it "struct Curl_llist"
As internal global names should use captical C.
Closes #5906
Diffstat (limited to 'lib/url.c')
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1074,7 +1074,7 @@ ConnectionExists(struct Curl_easy *data, &hostbundle); if(bundle) { /* Max pipe length is zero (unlimited) for multiplexed connections */ - struct curl_llist_element *curr; + struct Curl_llist_element *curr; infof(data, "Found bundle for host %s: %p [%s]\n", hostbundle, (void *)bundle, (bundle->multiuse == BUNDLE_MULTIPLEX ? |