Remove #include "globals.h" from packet-atalk.c (not needed) and from

packet-ipv6.h. Of all the files that include packet-ipv6.h, only
ipproto.c needs "globals.h", so I put the #include in ipproto.c

svn path=/trunk/; revision=1229
This commit is contained in:
Gilbert Ramirez 1999-12-06 18:33:49 +00:00
parent a76ce4a97a
commit 9c863db0d9
3 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
/* ipproto.c
* Routines for converting IPv4 protocol/v6 nxthdr field into string
*
* $Id: ipproto.c,v 1.4 1999/11/21 14:43:52 gram Exp $
* $Id: ipproto.c,v 1.5 1999/12/06 18:33:49 gram Exp $
*
* Gilbert Ramirez <gram@verdict.uthscsa.edu>
*
@ -47,6 +47,11 @@
#endif
#include <glib.h>
#ifndef __GLOBALS_H__
#include "globals.h"
#endif
#include "packet.h"
#include "etypes.h"
#include "packet-ip.h"

View File

@ -1,7 +1,7 @@
/* packet-atalk.c
* Routines for Appletalk packet disassembly (DDP, currently).
*
* $Id: packet-atalk.c,v 1.22 1999/11/16 11:42:25 guy Exp $
* $Id: packet-atalk.c,v 1.23 1999/12/06 18:33:49 gram Exp $
*
* Simon Wilkinson <sxw@dcs.ed.ac.uk>
*
@ -33,7 +33,6 @@
#endif
#include <glib.h>
#include "globals.h"
#include "packet.h"
#include "packet-atalk.h"

View File

@ -1,7 +1,7 @@
/* packet-ipv6.h
* Definitions for IPv6 packet disassembly
*
* $Id: packet-ipv6.h,v 1.9 1999/11/18 01:45:05 guy Exp $
* $Id: packet-ipv6.h,v 1.10 1999/12/06 18:33:49 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -26,10 +26,6 @@
#ifndef __PACKET_IPV6_H_DEFINED__
#define __PACKET_IPV6_H_DEFINED__
#ifndef __GLOBALS_H__
#include "globals.h"
#endif
struct e_in6_addr {
union {
guint32 u6_addr32[4];