summaryrefslogtreecommitdiff
path: root/rtclient.c
diff options
context:
space:
mode:
Diffstat (limited to 'rtclient.c')
-rw-r--r--rtclient.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/rtclient.c b/rtclient.c
index 154bc04..a66cd56 100644
--- a/rtclient.c
+++ b/rtclient.c
@@ -73,25 +73,8 @@ user_callback(void *contents, size_t size, size_t nmemb, void *writedata)
response[realsize] = '\0';
char *token = strtok(response, "\n");
if (strstr(token, "200 Ok"))
- while (token) {
+ while (token)
token = strtok(NULL, "\n");
-#ifdef DEBUG
-#ifdef ANDROID
- __android_log_print(ANDROID_LOG_ERROR, "librtclient.so", "Token:\n%s", token);
-#else
- fprintf(stderr, "Token:\n%s\n", token);
-#endif // ANDROID
-#endif // DEBUG
- }
-#ifdef DEBUG
- else {
-#ifdef ANDROID
- __android_log_print(ANDROID_LOG_ERROR, "librtclient.so", "Not okay");
-#else
- fprintf(stderr, "Not okay\n");
-#endif // ANDROID
- }
-#endif
return realsize;
}