From 1cc683c859f654332b6e6e6768dc7cdeeab84954 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 18 Apr 2026 22:03:22 +0200 Subject: [PATCH] CURLOPT_RTSP_SESSION_ID.md: expand the comment Enhance the example code Closes #21363 --- docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.md b/docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.md index b2d070f184..39d6ae7913 100644 --- a/docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.md +++ b/docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.md @@ -56,7 +56,7 @@ int main(void) CURL *curl = curl_easy_init(); if(curl) { CURLcode result; - char *prev_id = "old"; /* saved from before somehow */ + char *prev_id = "old"; /* previously retrieved RTSP session ID */ curl_easy_setopt(curl, CURLOPT_URL, "rtsp://example.com/"); curl_easy_setopt(curl, CURLOPT_RTSP_SESSION_ID, prev_id); result = curl_easy_perform(curl);