aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bsnmpd
Commit message (Expand)AuthorAgeFilesLines
* Don't explicitly build tcp wrappers support into bsnmpd; make it conditionalEnji Cooper2016-12-281-2/+6
* Fix the build by moving the initializers for len/nswapdev down below theEnji Cooper2016-12-281-2/+5
* style(9): clean up whitespaceEnji Cooper2016-12-281-8/+8
* style(9) fixes: clean up leading whitespaceEnji Cooper2016-12-281-0/+1
* style(9) fixes: clean up leading whitespaceEnji Cooper2016-12-281-1/+1
* style(9) fixesEnji Cooper2016-12-287-20/+20
* Only build/install usr.sbin/bsnmpd/modules/snmp_hast if MK_HAST != noEnji Cooper2016-12-281-1/+4
* Only build/install usr.sbin/bsnmpd/modules/snmp_wlan if MK_WIRELESS != noEnji Cooper2016-12-281-1/+4
* Install snmpmod.3 as all of the bsnmpd APIs it documentsEnji Cooper2016-12-281-0/+99
* style(9): clean up trailing whitespaceEnji Cooper2016-12-2724-70/+70
* Warning message cleanupEnji Cooper2016-12-243-42/+36
* Clean up parse_ip(..)Enji Cooper2016-12-181-3/+3
* Fix some minor typos with begemotBridgeTpLearnedEntryDiscards andEnji Cooper2016-12-181-3/+6
* Correct spelling in syslog: getttimeofday -> gettimeofdayGavin Atkinson2016-11-111-1/+1
* Fix improper use of "its".Bryan Drewery2016-11-081-1/+1
* When MAKEOBJDIRPREFIX points to a case-insensitive file system, theMarcel Moolenaar2016-09-241-1/+1
* WITH_META_MODE: Don't expect meta files for side-effect generated files.Bryan Drewery2016-06-031-0/+1
* Revert r299830, it has couple of fatal errors.Gleb Smirnoff2016-05-181-0/+1
* Remove NO_WERROR and add WARNS?= 6Enji Cooper2016-05-151-1/+2
* Remove NO_WERROR.clang from this MakefileEnji Cooper2016-05-151-2/+0
* 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
* Replace QUADFMT with %ju and QUADXFMT with %jx and cast values with uintmax_tEnji Cooper2016-05-151-1/+1
* 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