rtsp: change an !ISSPACE to !ISBLANK, as that's probably the intended

This commit is contained in:
Daniel Stenberg 2025-02-28 23:48:13 +01:00
parent 7ddcfafc73
commit 90e79aa780
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -957,7 +957,7 @@ CURLcode Curl_rtsp_parseheader(struct Curl_easy *data, const char *header)
* gstreamer does url-encoded session ID's not covered by the standard.
*/
end = start;
while(*end && *end != ';' && !ISSPACE(*end))
while(*end && *end != ';' && !ISBLANK(*end))
end++;
idlen = end - start;