Call "init_mib()" in "proto_register_snmp()"; not doing so causes core

dumps (probably because the SNMP libraries expect it to have been
called).

svn path=/trunk/; revision=533
This commit is contained in:
Guy Harris 1999-08-20 21:26:37 +00:00
parent b85bb70925
commit a6a41e0b59
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* Routines for SNMP (simple network management protocol)
* D.Jorand (c) 1998
*
* $Id: packet-snmp.c,v 1.6 1999/07/29 07:11:23 guy Exp $
* $Id: packet-snmp.c,v 1.7 1999/08/20 21:26:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@unicom.net>
@ -866,6 +866,7 @@ proto_register_snmp(void)
{ "Name", "snmp.abbreviation", TYPE, VALS_POINTER }},
};*/
init_mib();
proto_snmp = proto_register_protocol("Simple Network Management Protocol", "snmp");
/* proto_register_field_array(proto_snmp, hf, array_length(hf));*/
}