Changeset 400 for pwntcha/trunk/src/main.c
- Timestamp:
- Jan 4, 2005, 3:12:26 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/main.c
r392 r400 32 32 { 33 33 char *mode = "auto"; 34 int c; 35 int digit_optind = 0; 34 36 35 37 argv0 = argv[0]; 36 37 int c;38 int digit_optind = 0;39 38 40 39 for(;;) … … 123 122 else if(!strcmp(mode, "phpbb")) 124 123 result = decode_phpbb(img); 124 else if(!strcmp(mode, "scode")) 125 result = decode_scode(img); 125 126 else if(!strcmp(mode, "slashdot")) 126 127 result = decode_slashdot(img); … … 131 132 dprintf("autodetecting phpBB captcha\n"); 132 133 result = decode_phpbb(img); 134 } 135 else if(img->height == 25) 136 { 137 dprintf("autodetecting scode captcha\n"); 138 result = decode_scode(img); 133 139 } 134 140 else if(img->height == 69)
Note: See TracChangeset
for help on using the changeset viewer.