From ca5ae1b09fc46e33a740a5e474eb51d34581790c Mon Sep 17 00:00:00 2001 From: Sergey Zakharchenko Date: Thu, 13 Apr 2017 13:36:24 +0300 Subject: [PATCH] Fixing the type of the HTTP verision info to be long, not char*, as per documentation. --- src/lcinfoeasy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lcinfoeasy.h b/src/lcinfoeasy.h index 1818961..d5b6558 100644 --- a/src/lcinfoeasy.h +++ b/src/lcinfoeasy.h @@ -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)