mirror of
https://github.com/curl/curl.git
synced 2026-05-30 06:17:28 +03:00
curl_version_info: make the quic_version a const
Follow-up from 1a2df1518a
Closes #4222
This commit is contained in:
parent
f3c34bf83c
commit
aae490229b
2 changed files with 2 additions and 2 deletions
|
|
@ -84,7 +84,7 @@ typedef struct {
|
|||
(MAJOR << 16) | (MINOR << 8) | PATCH */
|
||||
const char *nghttp2_version; /* human readable string. */
|
||||
|
||||
char *quic_version; /* human readable quic (+ HTTP/3) library +
|
||||
const char *quic_version; /* human readable quic (+ HTTP/3) library +
|
||||
version or NULL */
|
||||
|
||||
} curl_version_info_data;
|
||||
|
|
|
|||
|
|
@ -2762,7 +2762,7 @@ typedef struct {
|
|||
unsigned int nghttp2_ver_num; /* Numeric nghttp2 version
|
||||
(MAJOR << 16) | (MINOR << 8) | PATCH */
|
||||
const char *nghttp2_version; /* human readable string. */
|
||||
char *quic_version; /* human readable quic (+ HTTP/3) library +
|
||||
const char *quic_version; /* human readable quic (+ HTTP/3) library +
|
||||
version or NULL */
|
||||
} curl_version_info_data;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue