Remove useless print statements
authorChip Black <bytex64@bytex64.net>
Sun, 19 Dec 2010 10:27:33 +0000 (04:27 -0600)
committerChip Black <bytex64@bytex64.net>
Sun, 19 Dec 2010 10:27:33 +0000 (04:27 -0600)
http_blerg.c

index 86a2690..ef14096 100644 (file)
@@ -30,12 +30,10 @@ ahc_derp (void *cls, struct MHD_Connection *connection, const char *url, const c
                }
                memcpy(author, url + 5, len);
                author[len] = 0;
-               printf("author: %s\n",  author);
 
                c = url + (5 + len);
                if (c[0] == '/' && c[1] != 0) {
                        record = strtoull(c + 1, NULL, 10);
-                       printf("record: %s %l\n", c + 1, record);
                        if (*ptr == NULL) {
                                *ptr = (void *) 1;
                                return MHD_YES;