diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-02 12:07:44 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-02 22:41:58 +0200 |
commit | 9e90ff0839a2ad750faad0d8176cd7cc01c1dae2 (patch) | |
tree | c952a9703e63631fbb8c81250c96888b39da3f5b /lib/urldata.h | |
parent | 9b3f888a00fe0c796e8ef7f00d03bb2adc2baa4e (diff) | |
download | curl-9e90ff0839a2ad750faad0d8176cd7cc01c1dae2.tar.gz |
hash: make it 'struct Curl_hash'
As internal global names should use captical C.
Closes #5906
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 01159a0db..ce11e1c15 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1842,7 +1842,7 @@ struct UserDefined { }; struct Names { - struct curl_hash *hostcache; + struct Curl_hash *hostcache; enum { HCACHE_NONE, /* not pointing to anything */ HCACHE_MULTI, /* points to a shared one in the multi handle */ |