summaryrefslogtreecommitdiffstats
path: root/streaming
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@tsaousis.gr>2018-11-23 01:13:51 +0200
committerGitHub <noreply@github.com>2018-11-23 01:13:51 +0200
commitcfc740a7a2e7b7236ad1378fdb7a73c281cb867e (patch)
treed022b513125525392b9f4b10084a0e75ff7574d4 /streaming
parent8d9085717923caef25f5194ba1138bc1e5381fcb (diff)
strictier use of URL separators; fixes #3253; fixes #4714 (#4716)
Diffstat (limited to 'streaming')
-rw-r--r--streaming/rrdpush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/rrdpush.c b/streaming/rrdpush.c
index df1a2177f8..617484c80f 100644
--- a/streaming/rrdpush.c
+++ b/streaming/rrdpush.c
@@ -1114,7 +1114,7 @@ int rrdpush_receiver_thread_spawn(RRDHOST *host, struct web_client *w, char *url
char buf[GUID_LEN + 1];
while(url) {
- char *value = mystrsep(&url, "?&");
+ char *value = mystrsep(&url, "&");
if(!value || !*value) continue;
char *name = mystrsep(&value, "=");