Commit 01b7d827 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

http2: rectify the http2 version #if check

We need 1.0.0 or later. Also verified by configure.
parent 7023d8aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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