diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-08-13 16:58:18 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-13 23:15:49 +0200 |
commit | aae490229b733a41223d8b806103cedf6bd757a0 (patch) | |
tree | 1f21ad3ec276c9bcc29ff09b16bd92b0732a28cf /include | |
parent | f3c34bf83c0bc60a97b76eba4f2b8f3d75310104 (diff) | |
download | curl-aae490229b733a41223d8b806103cedf6bd757a0.tar.gz |
curl_version_info: make the quic_version a const
Follow-up from 1a2df1518ad8653f
Closes #4222
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 9131f117d..66c27b773 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -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; |