summaryrefslogtreecommitdiffstats
path: root/Utilities/cmcurl/lib/rtsp.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-11-01 12:54:49 (GMT)
committerKitware Robot <kwrobot@kitware.com>2022-11-01 12:54:58 (GMT)
commit923de4b88c7eb2c0325a9c8cb6c03e0210e1f53f (patch)
treef49fbdcd9eb1aafb315165afb7a41ee3d0224a90 /Utilities/cmcurl/lib/rtsp.c
parent2d36046f08e08754b93bf112b37570613c43f5fb (diff)
parent25e9f318784fe4e14c2619780e7cdc573da4585e (diff)
downloadCMake-923de4b88c7eb2c0325a9c8cb6c03e0210e1f53f.zip
CMake-923de4b88c7eb2c0325a9c8cb6c03e0210e1f53f.tar.gz
CMake-923de4b88c7eb2c0325a9c8cb6c03e0210e1f53f.tar.bz2
Merge topic 'update-curl'
25e9f31878 curl: Set build options the way we need for CMake 9ffe6b0969 Merge branch 'upstream-curl' into update-curl ec122fff08 curl 2022-10-26 (cd95ee9f) fa9bbb8627 curl: Update script to get curl 7.86.0 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7851
Diffstat (limited to 'Utilities/cmcurl/lib/rtsp.c')
-rw-r--r--Utilities/cmcurl/lib/rtsp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Utilities/cmcurl/lib/rtsp.c b/Utilities/cmcurl/lib/rtsp.c
index 726bfb9..6d3bf97 100644
--- a/Utilities/cmcurl/lib/rtsp.c
+++ b/Utilities/cmcurl/lib/rtsp.c
@@ -18,6 +18,8 @@
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
+ * SPDX-License-Identifier: curl
+ *
***************************************************************************/
#include "curl_setup.h"
@@ -792,7 +794,7 @@ CURLcode Curl_rtsp_parseheader(struct Curl_easy *data, char *header)
/* Find the first non-space letter */
start = header + 8;
- while(*start && ISSPACE(*start))
+ while(*start && ISBLANK(*start))
start++;
if(!*start) {