aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-21 07:52:35 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-21 07:52:35 +0000
commit4da371409695a70517e9f0c054162e5aacbd0370 (patch)
tree1299f72d8f03425985df98083a0c130ab8f8020c /doc
parent5904f05078da51a512d77f38d40d943a300e3e8c (diff)
Include files from the "epan" directory and subdirectories thereof with
"epan/..." pathnames, so as to avoid collisions with header files in any of the directories in which we look (e.g., "proto.h", as some other package has its own "proto.h" file which it installs in the top-level include directory). Don't add "-I" flags to search "epan", as that's no longer necessary (and we want includes of "epan" headers to fail if the "epan/" is left out, so that we don't re-introduce includes lacking "epan/"). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4587 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'doc')
-rw-r--r--doc/README.developer8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/README.developer b/doc/README.developer
index 863dc0a58a..4b05a18d56 100644
--- a/doc/README.developer
+++ b/doc/README.developer
@@ -1,4 +1,4 @@
-$Id: README.developer,v 1.45 2002/01/20 22:12:37 guy Exp $
+$Id: README.developer,v 1.46 2002/01/21 07:52:35 guy Exp $
This file is a HOWTO for Ethereal developers. It describes how to start coding
a Ethereal protocol dissector and the use some of the important functions and
@@ -101,7 +101,7 @@ code inside
is needed only if you are using the "snprintf()" function.
-The "$Id: README.developer,v 1.45 2002/01/20 22:12:37 guy Exp $"
+The "$Id: README.developer,v 1.46 2002/01/21 07:52:35 guy Exp $"
in the comment will be updated by CVS when the file is
checked in; it will allow the RCS "ident" command to report which
version of the file is currently checked out.
@@ -111,7 +111,7 @@ version of the file is currently checked out.
* Routines for PROTONAME dissection
* Copyright 2000, YOUR_NAME <YOUR_EMAIL_ADDRESS>
*
- * $Id: README.developer,v 1.45 2002/01/20 22:12:37 guy Exp $
+ * $Id: README.developer,v 1.46 2002/01/21 07:52:35 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -160,7 +160,7 @@ version of the file is currently checked out.
# include "snprintf.h"
#endif
-#include "packet.h"
+#include <epan/packet.h>
#include "packet-PROTOABBREV.h"
/* Initialize the protocol and registered fields */