]> Nishi Git Mirror - libw3.git/commitdiff
made fetch output messages to stderr
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Mon, 22 Jan 2024 02:59:58 +0000 (02:59 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Mon, 22 Jan 2024 02:59:58 +0000 (02:59 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@48 d27a3e52-49c5-7645-884c-6793ebffc270

Example/fetch.c

index 11b2e46b8a8bb40d94a6a7f9f33933695f1bcf01..4e5c4ea3da99e95c846fe9b6f1ca67c35e1aed3a 100644 (file)
@@ -15,14 +15,14 @@ void fetch_data(struct W3* w3, char* data, size_t size){
 }
 
 void status(struct W3* w3, int status){
-       printf("Response code is %d\n", status);
+       fprintf(stderr, "Response code is %d\n", status);
 }
 
 void header(struct W3* w3, char* key, char* value){
        printf("Header: %s is `%s'\n", key, value);
        if(strcasecmp(key, "Server") == 0){
                /* For the example - We get the server software */
-               printf("Server is using `%s'\n", value);
+               fprintf(stderr, "Server is using `%s'\n", value);
        }
 }