summaryrefslogtreecommitdiff
path: root/usr.sbin/bsnmpd/tools
Commit message (Expand)AuthorAgeFilesLines
* Replace literal uses of /usr/local in C sources with _PATH_LOCALBASEStefan Eßer2020-10-271-1/+2
* Fix a few mandoc issuesGordon Bergling2020-10-091-1/+2
* Do a sweep and remove most WARNS=6 settingsKyle Evans2020-10-011-2/+0
* bsnmptools: make it print protocol errors to stderr instead of stdoutEugene Grosbein2020-08-051-4/+4
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
* These values already set by src.libnames.mk.Bryan Drewery2017-10-311-7/+0
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-05-091-5/+0
* usr.sbin: normalize paths using SRCTOP-relative paths or :H when possibleEnji Cooper2017-03-041-3/+3
* Fix logical inversion when checking result from callocEnji Cooper2017-01-041-1/+1
* Swap parameters around with parse_syntax_strval(..) for consistency withEnji Cooper2017-01-031-4/+3
* Make /usr/lib/libbsnmptools.so.0 into an INTERRNALLIBEnji Cooper2017-01-033-3/+9
* Call snmp_pdu_free on req/resp with a consistent, correct patternEnji Cooper2017-01-011-11/+21
* snmp_output_err_resp, snmp_output_resp: allocate `object` using calloc, notEnji Cooper2016-12-311-8/+23
* snmp_output_resp: style(9): sort variables by alignmentEnji Cooper2016-12-311-2/+2
* Set value->v.octetstring.len to a correct value on malloc success/failureEnji Cooper2016-12-311-3/+3
* snmp_pdu_free the right object at the right time in snmptool_walkEnji Cooper2016-12-311-2/+7
* Don't call snmp_pdu_free(..) until finished with the pdu and when ready toEnji Cooper2016-12-311-3/+2
* style(9) fixes: clean up leading whitespaceEnji Cooper2016-12-281-0/+1
* style(9): clean up trailing whitespaceEnji Cooper2016-12-275-16/+16
* Warning message cleanupEnji Cooper2016-12-243-42/+36
* Clean up parse_ip(..)Enji Cooper2016-12-181-3/+3
* Replace malloc + memset(.., 0, ..) with calloc callsEnji Cooper2016-05-151-5/+2
* Use strdup instead of malloc + strlcpyEnji Cooper2016-05-151-4/+3
* Correct function names that failed in error messagesEnji Cooper2016-05-152-4/+4
* Bump WARNS to 6Enji Cooper2016-05-151-0/+2
* Fix up r299769Enji Cooper2016-05-151-4/+2
* Replace malloc + memset(.., 0, ..) with calloc callsEnji Cooper2016-05-151-5/+2
* Fix up both r299764 and r299770Enji Cooper2016-05-151-2/+1
* Convert tok from enum tok to int32_t in function callsEnji Cooper2016-05-141-10/+9
* Use a consistent errno save/restore pattern before running strtoulEnji Cooper2016-05-141-4/+17
* Do minimal work necessary to cure a -Wunused-but-set-variable warning from gccEnji Cooper2016-05-141-4/+4
* Fix up r299764Enji Cooper2016-05-141-1/+1
* Use the size of the destination buffer instead of the malloc size, repeated, ...Enji Cooper2016-05-141-2/+2
* Mute sign compare warning by casting rc to u_int to match nbindings' typeEnji Cooper2016-05-141-1/+1
* Fix logically dead code pointed out by clang/CoverityEnji Cooper2016-05-141-3/+3
* Fix theoretical buffer overflow issues in snmp_oid2asn_oidEnji Cooper2016-05-141-2/+1
* Use the size of the destination buffer, not the source buffer.Enji Cooper2016-05-141-1/+1
* Mute -Wstrlcpy-strlcat-size warning by using nitems with the size of the bufferEnji Cooper2016-05-141-1/+1
* Mark snmptoolctx unused in parse_authentication(..), parse_privacy(..),Enji Cooper2016-05-141-4/+4
* parse_ascii: make count size_t to mute a -Wsign-compare issueEnji Cooper2016-05-141-1/+2
* Sort variables in parse_ascii(..) per style(9)Enji Cooper2016-05-141-2/+2
* Use calloc instead of memset(.., 0, ..) + mallocEnji Cooper2016-05-141-5/+2
* Fix some trivial clang/gcc warnings in bsnmptc.cEnji Cooper2016-05-141-10/+8
* Fold two malloc + memset(.., 0, ..) calls into equivalent calloc callsEnji Cooper2016-05-141-4/+2
* Staticize global variables only used in bsnmpimport.c to fixEnji Cooper2016-05-141-9/+9
* Move _bsnmptools_debug extern from bsnmpmap.c to bsnmptools.hEnji Cooper2016-05-132-2/+1
* Properly compute the size argument to pass to malloc().Don Lewis2016-05-131-1/+1
* Use a better idiom for finding UTC prefixed timezonesEnji Cooper2016-04-281-3/+4
* Fix looking for "UTC" at start of ptr by using strnmp instead of improperlyEnji Cooper2016-04-231-2/+2
* Don't try to free `string` (stack allocated char[])Enji Cooper2016-04-221-2/+1