From 27302abb9467f21a481fcc6b8eca53d34e04373b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 7 Nov 2016 10:36:23 +0100 Subject: s/cURL/curl We're mostly saying just "curl" in lower case these days so here's a big cleanup to adapt to this reality. A few instances are left as the project could still formally be considered called cURL. --- docs/examples/rtsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/examples/rtsp.c') diff --git a/docs/examples/rtsp.c b/docs/examples/rtsp.c index 63c46e151..bdab39542 100644 --- a/docs/examples/rtsp.c +++ b/docs/examples/rtsp.c @@ -188,7 +188,7 @@ int main(int argc, char * const argv[]) printf("\nRTSP request %s\n", VERSION_STR); printf(" Project web site: http://code.google.com/p/rtsprequest/\n"); - printf(" Requires cURL V7.20 or greater\n\n"); + printf(" Requires curl V7.20 or greater\n\n"); /* check command line */ if((argc != 2) && (argc != 3)) { @@ -226,7 +226,7 @@ int main(int argc, char * const argv[]) if(res == CURLE_OK) { curl_version_info_data *data = curl_version_info(CURLVERSION_NOW); CURL *curl; - fprintf(stderr, " cURL V%s loaded\n", data->version); + fprintf(stderr, " curl V%s loaded\n", data->version); /* initialize this curl session */ curl = curl_easy_init(); -- cgit v1.2.3