We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rather minor, but… the curl_version_info.3 man page documents the curl_version_info_data struct's fields, including
curl_version_info.3
curl_version_info_data
const char **protocols; /* list of protocols */
However protocols is in fact a const char * const * — which makes a difference when user code is declaring a variable to traverse the list.
protocols
const char * const *
The text was updated successfully, but these errors were encountered:
curl_version_info.3: fixed the 'protocols' variable type
63c64e0
Reported-by: John Marshall Bug: #225
Thanks a lot, fixed now in 63c64e0
Sorry, something went wrong.
05faeb8
Reported-by: John Marshall Bug: curl#225
bagder
No branches or pull requests
Rather minor, but… the
curl_version_info.3
man page documents thecurl_version_info_data
struct's fields, includingHowever
protocols
is in fact aconst char * const *
— which makes a difference when user code is declaring a variable to traverse the list.The text was updated successfully, but these errors were encountered: