summaryrefslogtreecommitdiff
path: root/ws2a/bugcomment.c
diff options
context:
space:
mode:
Diffstat (limited to 'ws2a/bugcomment.c')
-rw-r--r--ws2a/bugcomment.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ws2a/bugcomment.c b/ws2a/bugcomment.c
index 75d0461..38dd97d 100644
--- a/ws2a/bugcomment.c
+++ b/ws2a/bugcomment.c
@@ -134,7 +134,7 @@ int main(){
char captchapath[100];
char* captchadecoded = replaceHTML(captcha);
sprintf(captchapath,"../ws2a/captchas/%s.txt",captchadecoded);
- printf("Generated path...\n");
+ //printf("Generated path...\n");
FILE* captchafile = fopen(captchapath,"r");
if(captchafile == NULL){
printf("%s%c%c\n","Content-Type:text/html;charset=iso-8859-1",13,10);
@@ -155,10 +155,10 @@ int main(){
char command[100];
sprintf(command,"rm \"%s\"",captchapath);
system(command);
- printf("After first command\n");
+ //printf("After first command\n");
sprintf(command,"rm \"../ws2a/captchas/%lu.png\"",inputhash);
system(command);
- printf("After second command\n");
+ //printf("After second command\n");
//Add comment to bug file
char filepath[100];