diff options
author | Jörg Mayer <jmayer@loplof.de> | 2002-08-19 21:33:29 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2002-08-19 21:33:29 +0000 |
commit | 6bad27d387c6ee95ad5b58e8ec15722879fa773f (patch) | |
tree | 91eb48788bf661edeb4e2705a8631ce307ee5d46 /Makefile.nmake | |
parent | bcf1b43dee9f7dcaf89038b268837f10443402ef (diff) | |
download | wireshark-6bad27d387c6ee95ad5b58e8ec15722879fa773f.tar.gz wireshark-6bad27d387c6ee95ad5b58e8ec15722879fa773f.tar.bz2 wireshark-6bad27d387c6ee95ad5b58e8ec15722879fa773f.zip |
Add new dissector by Brian Bruns for the TDS protocol with the
following changes:
- Inserted packet-tds.h This is personal taste because of the many
files in the toplevel directory. Whoever works on this next is
free of course to separate it back out again.
- Removed unused includes sys/types.h, snprintf.h, netinet/in.h
- #if-0 unused function
- Removed duplicate define
- Declared all unused parameters as such
- Changed a // comment into /* */
- ifdef-DEBUG a printf statement
svn path=/trunk/; revision=6025
Diffstat (limited to 'Makefile.nmake')
-rw-r--r-- | Makefile.nmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index 0e6cdd4bcf..9c3f93f577 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -1,7 +1,7 @@ ## Makefile for building ethereal.exe with Microsoft C and nmake ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake # -# $Id: Makefile.nmake,v 1.200 2002/08/14 18:48:16 guy Exp $ +# $Id: Makefile.nmake,v 1.201 2002/08/19 21:33:29 jmayer Exp $ include config.nmake include <win32.mak> @@ -244,6 +244,7 @@ DISSECTOR_SRC = \ packet-syslog.c \ packet-tacacs.c \ packet-tcp.c \ + packet-tds.c \ packet-telnet.c\ packet-tftp.c \ packet-time.c \ |