Changeset 459 for pwntcha/trunk/src/main.c
- Timestamp:
- Jan 13, 2005, 4:26:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/main.c
r456 r459 139 139 else if(!strcmp(mode, "linuxfr")) 140 140 result = decode_linuxfr(img); 141 else if(!strcmp(mode, "lmt")) 142 result = decode_lmt(img); 141 143 else if(!strcmp(mode, "paypal")) 142 144 result = decode_paypal(img); … … 163 165 result = decode_linuxfr(img); 164 166 } 167 else if(img->width == 69 && img->height == 35) 168 { 169 dprintf("autodetected lmt.lv captcha\n"); 170 result = decode_lmt(img); 171 } 165 172 else if(img->width == 208 && img->height == 26) 166 173 {
Note: See TracChangeset
for help on using the changeset viewer.