Quote:
Originally posted by jpainter
I would suggest opening that file with VI, go to line 28, and see if you can see anything that is a blatent error between the beginning of the line and the ;. ...
|

remember I'm a VB guy...
everything looks like a blatent error in this file...
Here is line 28:
dumper = new WtapDumpFile;
Here are the few lines above that line down to line 28
#include "airsnortdump.h"
#include "packetracker.h"
int AirsnortDumpFile::OpenDump(const char *file) {
snprintf(type, 64, "airsnort (weak packet) dump");
snprintf(filename, 1024, "%s",file);
num_dumped = 0;
dumper = new WtapDumpFile;
Thank you for your reply
-Jay