aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-21 07:52:35 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-21 07:52:35 +0000
commit95106816d31e0dc6d7c7741479a51f9ad1c46bc4 (patch)
tree1299f72d8f03425985df98083a0c130ab8f8020c /doc
parentee5ca25d31984b9768d5ae9419dea0e3b493b479 (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/"). svn path=/trunk/; revision=4587
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 */