mirror of
https://github.com/curl/curl.git
synced 2026-06-02 00:04:15 +03:00
http2: rectify the http2 version #if check
We need 1.0.0 or later. Also verified by configure.
This commit is contained in:
parent
7023d8aa37
commit
01b7d8274c
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
#define MIN(x,y) ((x)<(y)?(x):(y))
|
||||
|
||||
#if (NGHTTP2_VERSION_NUM < 0x000600)
|
||||
#if (NGHTTP2_VERSION_NUM < 0x010000)
|
||||
#error too old nghttp2 version, upgrade!
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue