1
0
mirror of https://github.com/moparisthebest/curl synced 2025-02-28 17:31:46 -05:00

examples: fix compilation issues - commit 7332a7cafb follow-up

This commit is contained in:
Yang Tse 2012-12-05 12:59:14 +01:00
parent 7332a7cafb
commit fe2b2a3b9d
2 changed files with 11 additions and 11 deletions

View File

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -89,7 +89,7 @@ main(void)
#endif #endif
/* Netscape format cookie */ /* Netscape format cookie */
snprintf(nline, sizeof(nline), "%s\t%s\t%s\t%s\t%lu\t%s\t%s", snprintf(nline, sizeof(nline), "%s\t%s\t%s\t%s\t%lu\t%s\t%s",
".google.com", "TRUE", "/", "FALSE", time(NULL) + 31337, "PREF", "hello google, i like you very much!"); ".google.com", "TRUE", "/", "FALSE", (unsigned long)time(NULL) + 31337UL, "PREF", "hello google, i like you very much!");
res = curl_easy_setopt(curl, CURLOPT_COOKIELIST, nline); res = curl_easy_setopt(curl, CURLOPT_COOKIELIST, nline);
if (res != CURLE_OK) { if (res != CURLE_OK) {
fprintf(stderr, "Curl curl_easy_setopt failed: %s\n", curl_easy_strerror(res)); fprintf(stderr, "Curl curl_easy_setopt failed: %s\n", curl_easy_strerror(res));

View File

@ -178,7 +178,7 @@ int main(int argc, char * const argv[])
#endif #endif
const char *range = "0.000-"; const char *range = "0.000-";
int rc = EXIT_SUCCESS; int rc = EXIT_SUCCESS;
char *basename = NULL; char *base_name = NULL;
printf("\nRTSP request %s\n", VERSION_STR); printf("\nRTSP request %s\n", VERSION_STR);
printf(" Project web site: http://code.google.com/p/rtsprequest/\n"); printf(" Project web site: http://code.google.com/p/rtsprequest/\n");
@ -186,20 +186,20 @@ int main(int argc, char * const argv[])
/* check command line */ /* check command line */
if ((argc != 2) && (argc != 3)) { if ((argc != 2) && (argc != 3)) {
basename = strrchr(argv[0], '/'); base_name = strrchr(argv[0], '/');
if (basename == NULL) { if (base_name == NULL) {
basename = strrchr(argv[0], '\\'); base_name = strrchr(argv[0], '\\');
} }
if (basename == NULL) { if (base_name == NULL) {
basename = argv[0]; base_name = argv[0];
} else { } else {
basename++; base_name++;
} }
printf("Usage: %s url [transport]\n", basename); printf("Usage: %s url [transport]\n", base_name);
printf(" url of video server\n"); printf(" url of video server\n");
printf(" transport (optional) specifier for media stream protocol\n"); printf(" transport (optional) specifier for media stream protocol\n");
printf(" default transport: %s\n", transport); printf(" default transport: %s\n", transport);
printf("Example: %s rtsp://192.168.0.2/media/video1\n\n", basename); printf("Example: %s rtsp://192.168.0.2/media/video1\n\n", base_name);
rc = EXIT_FAILURE; rc = EXIT_FAILURE;
} else { } else {
const char *url = argv[1]; const char *url = argv[1];