package/janus-gateway: bump to version 1.1.2
Remove patch applied upstream. Signed-off-by: Nicolas Cavallari <nicolas.cavallari@green-communications.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
9ce280ba18
commit
b83550bd0c
@ -1,27 +0,0 @@
|
||||
From 51431c36cd5f2997c0f7723909195b9883ae0486 Mon Sep 17 00:00:00 2001
|
||||
From: Benson Muite <bkmgit@users.noreply.github.com>
|
||||
Date: Wed, 4 Jan 2023 13:33:36 +0300
|
||||
Subject: [PATCH] Use parentheses to ensure compilation (#3138)
|
||||
|
||||
Compiler fails with latest Curl release. Use parenthesis to ensure compiler evaluates expression correctly.
|
||||
|
||||
[Retrieved from:
|
||||
https://github.com/meetecho/janus-gateway/commit/51431c36cd5f2997c0f7723909195b9883ae0486]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
src/turnrest.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/turnrest.c b/src/turnrest.c
|
||||
index b8560d22f2..42e6114de8 100644
|
||||
--- a/src/turnrest.c
|
||||
+++ b/src/turnrest.c
|
||||
@@ -165,7 +165,7 @@ janus_turnrest_response *janus_turnrest_request(const char *user) {
|
||||
JANUS_LOG(LOG_VERB, "Sending request: %s\n", request_uri);
|
||||
janus_mutex_unlock(&api_mutex);
|
||||
curl_easy_setopt(curl, CURLOPT_URL, request_uri);
|
||||
- curl_easy_setopt(curl, api_http_get ? CURLOPT_HTTPGET : CURLOPT_POST, 1);
|
||||
+ curl_easy_setopt(curl, (api_http_get ? CURLOPT_HTTPGET : CURLOPT_POST), 1);
|
||||
if(!api_http_get) {
|
||||
/* FIXME Some servers don't like a POST with no data */
|
||||
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, query_string);
|
@ -1,3 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 bb83c19d6137e39833e8eb2b1deeecb33b5d19d4f503d51703bdcc478c447940 janus-gateway-1.1.1.tar.gz
|
||||
sha256 f721d62a22b38ba3a341a5502f06b8b3a5a4f7bd0e9cc6c53de257fe99695e17 janus-gateway-1.1.2.tar.gz
|
||||
sha256 91d04c97fa1da3fcd28205873276358aafc071c5b00a9ea8c49dd06d487a9dc6 COPYING
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
JANUS_GATEWAY_VERSION = 1.1.1
|
||||
JANUS_GATEWAY_VERSION = 1.1.2
|
||||
JANUS_GATEWAY_SITE = $(call github,meetecho,janus-gateway,v$(JANUS_GATEWAY_VERSION))
|
||||
JANUS_GATEWAY_LICENSE = GPL-3.0 with OpenSSL exception
|
||||
JANUS_GATEWAY_LICENSE_FILES = COPYING
|
||||
|
Loading…
Reference in New Issue
Block a user