From 4e2e6d0b9bd9ea269bdb1768c6766c3ff35dbbfe Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Sat, 22 Nov 2014 12:26:50 +0200 Subject: [PATCH] Fixed OPTIONS syntax. --- tuner.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tuner.c b/tuner.c index 46d3d77..26ef9dd 100644 --- a/tuner.c +++ b/tuner.c @@ -184,8 +184,8 @@ bool cSatipTuner::Connect(void) debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM); if (!isempty(*streamAddrM)) { - cString connectionUri = cString::sprintf("rtsp://%s", *streamAddrM); - cString uri = cString::sprintf("%s/?%s", *connectionUri, *streamParamM); + cString connectionUri = cString::sprintf("rtsp://%s/", *streamAddrM); + cString uri = cString::sprintf("%s?%s", *connectionUri, *streamParamM); // Just retune if (streamIdM >= 0) { debug("cSatipTuner::%s(): retune [device %d]", __FUNCTION__, deviceIdM);