summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rtclient.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/rtclient.c b/rtclient.c
index 4f42463..a8430b5 100644
--- a/rtclient.c
+++ b/rtclient.c
@@ -64,9 +64,6 @@ void rtclient_login(const char *name, const char *password)
void rtclient_user(const char *name)
{
-#ifdef DEBUG
- fprintf(stderr, "NAME:\n%s\n", name);
-#endif
static const char *user_path = "/REST/1.0/user/";
char user_url[strlen(server_url) + strlen(user_path) + strlen(name) + 1];
sprintf(user_url, "%s%s%s", server_url, user_path, name);