=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/snmp/mib.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** src/usr.bin/snmp/mib.c 2020/05/19 13:41:01 1.2 --- src/usr.bin/snmp/mib.c 2020/08/03 14:45:54 1.3 *************** *** 1,4 **** ! /* $OpenBSD: mib.c,v 1.2 2020/05/19 13:41:01 martijn Exp $ */ /* * Copyright (c) 2012 Joel Knight --- 1,4 ---- ! /* $OpenBSD: mib.c,v 1.3 2020/08/03 14:45:54 martijn Exp $ */ /* * Copyright (c) 2012 Joel Knight *************** *** 27,35 **** --- 27,37 ---- #include "smi.h" static struct oid mib_tree[] = MIB_TREE; + static struct textconv textconv_tree[] = TEXTCONV_TREE; void mib_init(void) { smi_mibtree(mib_tree); + smi_textconvtree(textconv_tree); }