summaryrefslogtreecommitdiff
path: root/epan/dtd_parse.l
AgeCommit message (Collapse)AuthorFilesLines
2006-05-29Ethereal->WiresharkAnders Broman1-3/+3
svn path=/trunk/; revision=18248
2006-05-22ethereal->wireshark updatesRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18206
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2005-10-07"./dtd_parse.l", line 167: warning, rule cannot be matchedLuis Ontanon1-2/+2
the . matches one char as {special_char} does so {special_char} won't have been matched. change that for a non ">" svn path=/trunk/; revision=16153
2005-10-06remove location from dtd_build_data_t avoiding to (double) free it.Luis Ontanon1-2/+0
svn path=/trunk/; revision=16147
2005-09-24get rid of most dtd leaks.Luis Ontanon1-3/+7
There's just one left I'm aware of (the doctype name). svn path=/trunk/; revision=15990
2005-09-22Make the private variables for various lexical analyzers static, soGuy Harris1-12/+12
that we don't have all the lexical analyzers in libethereal share them (note that they're already static in radius_dict.l, so they weren't sharing with any other lexical analyzer), and so that OS X 10.3.9's run-time linker doesn't get upset at finding them defined in libethereal and the MATE plugin. Fix up indentation. svn path=/trunk/; revision=15961
2005-09-20Fix a couple of errors found by valgrind.Gerald Combs1-1/+2
svn path=/trunk/; revision=15900
2005-09-20 avoid freeing the last location twice.Luis Ontanon1-2/+16
add some #ifed out code to help debugging the parser svn path=/trunk/; revision=15884
2005-09-17Because there's more than just text in XML...Luis Ontanon1-4/+19
DTDs are imported to create fields svn path=/trunk/; revision=15851
2005-09-12Add a header file to declare routines defined in lexer and used inGuy Harris1-5/+2
parser, or vice versa. svn path=/trunk/; revision=15769
2005-09-10the dtd parser (still missing the glue) and few fixes to packet-xml.cLuis Ontanon1-0/+316
svn path=/trunk/; revision=15745