diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-01 22:00:00 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-01 22:00:00 +0000 |
commit | c0565b3fbe608793abe2b89bc40313dcf295a11d (patch) | |
tree | 8b2fa25bad227483c6e5cae8622a7c2dd586f268 /packet-snmp.c | |
parent | f681e6f92c8bc10e8a75a1b5c5249946f7989351 (diff) | |
download | wireshark-c0565b3fbe608793abe2b89bc40313dcf295a11d.tar.gz wireshark-c0565b3fbe608793abe2b89bc40313dcf295a11d.tar.bz2 wireshark-c0565b3fbe608793abe2b89bc40313dcf295a11d.zip |
From Kikuchi Ayamura: include <ucd-snmp/ucd-snmp-config.h> to fix IRIX
compilation problems.
svn path=/trunk/; revision=5073
Diffstat (limited to 'packet-snmp.c')
-rw-r--r-- | packet-snmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-snmp.c b/packet-snmp.c index e16059903f..2f7f242e88 100644 --- a/packet-snmp.c +++ b/packet-snmp.c @@ -8,7 +8,7 @@ * * See RFCs 1905, 1906, 1909, and 1910 for SNMPv2u. * - * $Id: packet-snmp.c,v 1.90 2002/03/31 22:43:47 guy Exp $ + * $Id: packet-snmp.c,v 1.91 2002/04/01 21:59:59 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -60,6 +60,7 @@ #include "packet-ipx.h" #ifdef HAVE_UCD_SNMP +# include <ucd-snmp/ucd-snmp-config.h> # include <ucd-snmp/asn1.h> # include <ucd-snmp/snmp_api.h> # include <ucd-snmp/snmp_impl.h> |