diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-08-20 06:01:07 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-08-20 06:01:07 +0000 |
commit | 57198bc28f3fd6e6f885f9fd2f0849ae937497a4 (patch) | |
tree | a29e565b897f9e25c707151a7b603b22316098b4 /README | |
parent | a3c225835082cab556616a8ac09a566e2a5e77cc (diff) | |
download | wireshark-57198bc28f3fd6e6f885f9fd2f0849ae937497a4.tar.gz wireshark-57198bc28f3fd6e6f885f9fd2f0849ae937497a4.tar.bz2 wireshark-57198bc28f3fd6e6f885f9fd2f0849ae937497a4.zip |
Made handling of byte strings in scanner and parser much simpler,
improving size of grammar and creating the possibility of dfilter_compile
reporting errors back to user. In this case, if an ETHER variable is
compared against a byte string that is not 6 bytes, an error condition is
flagged appropriately. I have not put in the code to conver that error flag
to a message to the user, but that's what I'm working on next.
Also, fixed sample debug session in README to show correct gdb prompt.
svn path=/trunk/; revision=522
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -133,10 +133,10 @@ resulting core file can be obtained by starting the debugger and using the 'backtrace' command. $ gdb ethereal core -> backtrace +(gdb) backtrace ..... prints the stack trace -> quit - +(gdb) quit +$ Disclaimer ---------- |