Changeset 444 for pwntcha/trunk
- Timestamp:
- Jan 10, 2005, 1:43:36 AM (17 years ago)
- Location:
- pwntcha/trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/extras
- Property svn:ignore
-
old new 1 1 Makefile.in 2 2 Makefile 3 makefont
-
- Property svn:ignore
-
pwntcha/trunk/src/Makefile.am
r440 r444 14 14 slashdot.c \ 15 15 vbulletin.c \ 16 xanga.c \ 16 17 test.c 17 18 pwntcha_CFLAGS = $(ADDITIONAL_CFLAGS) -Wall -O6 -
pwntcha/trunk/src/main.c
r430 r444 147 147 else if(!strcmp(mode, "vbulletin")) 148 148 result = decode_vbulletin(img); 149 else if(!strcmp(mode, "xanga")) 150 result = decode_xanga(img); 149 151 else 150 152 { … … 163 165 dprintf("autodetected phpBB captcha\n"); 164 166 result = decode_phpbb(img); 167 } 168 else if(img->width == 170 && img->height == 50) 169 { 170 dprintf("autodetected Xanga captcha\n"); 171 result = decode_xanga(img); 165 172 } 166 173 else if(img->height <= 40 && count < 10)
Note: See TracChangeset
for help on using the changeset viewer.