Merge pull request #97 from digitalloggers/fix-http-version-info-type

Fixing the type of the HTTP verision info to be long, not char*
This commit is contained in:
Alexey Melnichuk 2017-04-13 15:09:32 +03:00 committed by GitHub
commit f1088861f7

View File

@ -44,7 +44,7 @@ OPT_ENTRY( rtsp_cseq_recv, RTSP_CSEQ_RECV, LNG, 0)
#endif
#if LCURL_CURL_VER_GE(7,50,1)
OPT_ENTRY( http_version, HTTP_VERSION, STR, 0)
OPT_ENTRY( http_version, HTTP_VERSION, LNG, 0)
#endif
#if LCURL_CURL_VER_GE(7,52,0)