svn commit: r359514 - head/tools/test/bsnmp

2020-04-01 Thread Hartmut Brandt
Author: harti Date: Wed Apr 1 15:39:02 2020 New Revision: 359514 URL: https://svnweb.freebsd.org/changeset/base/359514 Log: Add a makefile to build and run the tests for the bsnmp library. This is not automatically built or run but must explicitly be built with 'make' and run with 'make

svn commit: r359512 - in head: contrib/bsnmp/lib contrib/bsnmp/snmp_mibII contrib/bsnmp/snmp_usm contrib/bsnmp/snmp_vacm contrib/bsnmp/snmpd contrib/bsnmp/tests lib/libbsnmp/libbsnmp

2020-04-01 Thread Hartmut Brandt
in any of the function an error indication as described +If an error occurs in any of the functions an error indication as described above is returned. -Additionally the function sets a printable error string -in the +Additionally the function sets a printable error string in the .Va error -filed

svn commit: r359490 - in vendor/bsnmp/dist: . config gensnmpdef gensnmptree lib snmp_mibII snmp_ntp snmp_target snmp_usm snmp_vacm snmpd tests

2020-03-31 Thread Hartmut Brandt
@@ .\" Copyright (c) 2001-2005 .\"Fraunhofer Institute for Open Communication Systems (FhG Fokus). .\"All rights reserved. -.\" Copyright (c) 2006 +.\" Copyright (c) 2006,2018 .\"Hartmut Brandt .\"All rights reserved. .\" @@ -31,7 +31,7 @@ .\"

svn commit: r359492 - in vendor: 1.14 bsnmp/1.14

2020-03-31 Thread Hartmut Brandt
Author: harti Date: Tue Mar 31 17:57:11 2020 New Revision: 359492 URL: https://svnweb.freebsd.org/changeset/base/359492 Log: Move the bsnmp 1.14 import tag to the correct place. Added: vendor/bsnmp/1.14/ - copied from r359491, vendor/1.14/ Deleted: vendor/1.14/

svn commit: r359491 - vendor/1.14

2020-03-31 Thread Hartmut Brandt
Author: harti Date: Tue Mar 31 17:53:23 2020 New Revision: 359491 URL: https://svnweb.freebsd.org/changeset/base/359491 Log: Tag import of version 1.14 of bsnmp. Added: vendor/1.14/ - copied from r359490, vendor/bsnmp/dist/ ___

svn commit: r336778 - vendor/bsnmp/1.13

2018-07-27 Thread Hartmut Brandt
Author: harti Date: Fri Jul 27 19:31:58 2018 New Revision: 336778 URL: https://svnweb.freebsd.org/changeset/base/336778 Log: Tag bsnmp vendor release 1.13. Added: vendor/bsnmp/1.13/ - copied from r336777, vendor/bsnmp/dist/ ___

svn commit: r336777 - in vendor/bsnmp/dist: . config gensnmpdef gensnmptree lib snmp_mibII snmp_ntp snmp_target snmp_usm snmp_vacm snmpd

2018-07-27 Thread Hartmut Brandt
Author: harti Date: Fri Jul 27 19:30:18 2018 New Revision: 336777 URL: https://svnweb.freebsd.org/changeset/base/336777 Log: Vendor import of bsnmp-1.13. Added: vendor/bsnmp/dist/README.1st (contents, props changed) vendor/bsnmp/dist/config/install-sh (contents, props changed)

svn commit: r335885 - in head: contrib/bsnmp contrib/bsnmp/gensnmptree contrib/bsnmp/lib contrib/bsnmp/snmp_mibII contrib/bsnmp/snmp_ntp contrib/bsnmp/snmp_target contrib/bsnmp/snmp_usm contrib/bsn...

2018-07-03 Thread Hartmut Brandt
; Copyright (c) 2006 +.\" Copyright (c) 2006,2018 .\"Hartmut Brandt .\"All rights reserved. .\" @@ -31,7 +31,7 @@ .\" .\" $Begemot: gensnmptree.1 383 2006-05-30 07:40:49Z brandt_h $ .\" -.Dd May 26, 2006 +.Dd June 29, 2018 .Dt GENSNMPTREE 1 .Os .Sh N

svn commit: r313043 - head/sys/kern

2017-02-01 Thread Hartmut Brandt
Author: harti Date: Wed Feb 1 13:12:07 2017 New Revision: 313043 URL: https://svnweb.freebsd.org/changeset/base/313043 Log: Merge filt_soread and filt_solisten and decide what to do when checking for EVFILT_READ at the point of the check not when the event is registers. This fixes a

svn commit: r294507 - head/contrib/bsnmp/snmp_mibII

2016-01-21 Thread Hartmut Brandt
Author: harti Date: Thu Jan 21 16:11:20 2016 New Revision: 294507 URL: https://svnweb.freebsd.org/changeset/base/294507 Log: Fill the ifAlias leaf of the ifXTable with the interface description if there is one available and it fits into the maximum size (64 characters). Modified:

svn commit: r260986 - head/contrib/bsnmp/lib

2014-01-21 Thread Hartmut Brandt
Author: harti Date: Tue Jan 21 16:49:54 2014 New Revision: 260986 URL: http://svnweb.freebsd.org/changeset/base/260986 Log: Fix a problem with OBJECT IDENTIFIER encoding: need to check the second subid to be less than 40, not the first when the first subid is 0 or 1. Modified:

svn commit: r235777 - head/sys/kern

2012-05-22 Thread Hartmut Brandt
Author: harti Date: Tue May 22 07:23:41 2012 New Revision: 235777 URL: http://svn.freebsd.org/changeset/base/235777 Log: Make dumptid non-static. It is used by libkvm to detect whether this is a VNET-kernel or not. gcc used to put the static symbol into the symbol table, clang does not.

svn commit: r235780 - head/include

2012-05-22 Thread Hartmut Brandt
Author: harti Date: Tue May 22 09:59:49 2012 New Revision: 235780 URL: http://svn.freebsd.org/changeset/base/235780 Log: Fix a compilation error with some compilers: __attribute__ requires two parenthesis for its argument, but instead of using __attribute__ directly, use the appropriate

Re: svn commit: r235777 - head/sys/kern

2012-05-22 Thread Hartmut Brandt
On Tue, 22 May 2012, Bruce Evans wrote: BEOn Tue, 22 May 2012, Hartmut Brandt wrote: BE BE Log: BE Make dumptid non-static. It is used by libkvm to detect whether BE this is a VNET-kernel or not. gcc used to put the static symbol into BE the symbol table, clang does not. This fixes

svn commit: r233128 - head/contrib/bsnmp/snmpd

2012-03-18 Thread Hartmut Brandt
Author: harti Date: Sun Mar 18 19:28:52 2012 New Revision: 233128 URL: http://svn.freebsd.org/changeset/base/233128 Log: memset() wants the size of the structure to clear, not the size of the pointer to it. Submitted by: Pawel Worach Modified: head/contrib/bsnmp/snmpd/main.c

svn commit: r218225 - head/contrib/bsnmp

2011-02-03 Thread Hartmut Brandt
Author: harti Date: Thu Feb 3 15:19:18 2011 New Revision: 218225 URL: http://svn.freebsd.org/changeset/base/218225 Log: Bring the list of OIDs up-to-date to prevent conflicts. Modified: head/contrib/bsnmp/oid-list Modified: head/contrib/bsnmp/oid-list

svn commit: r202070 - head/usr.bin/make

2010-01-11 Thread Hartmut Brandt
Author: harti Date: Mon Jan 11 09:16:42 2010 New Revision: 202070 URL: http://svn.freebsd.org/changeset/base/202070 Log: Fix the previous commit (still not used to svn vs. cvs). Use the define from paths.h for the default temporary directory and remove and unneccessary getenv call.

svn commit: r202045 - head/usr.bin/make

2010-01-10 Thread Hartmut Brandt
Author: harti Date: Sun Jan 10 20:26:03 2010 New Revision: 202045 URL: http://svn.freebsd.org/changeset/base/202045 Log: Make make respect the TMPDIR environment variable. PR: bin/115447 Submitted by: Eugene Grosbein Modified: head/usr.bin/make/job.c Modified:

Re: svn commit: r187132 - head/usr.bin/make

2009-01-30 Thread Hartmut Brandt
Erik Trulsson wrote: On Fri, Jan 30, 2009 at 01:02:15PM +0100, Ivan Voras wrote: 2009/1/30 David O'Brien obr...@freebsd.org: compiler invocation must really bug you. Perhaps we should have the quiet out put of the ncftp3 build where every complication takes only 1 line: Compiling

svn commit: r186357 - in vendor/bsnmp: 1.10 1.10/contrib 1.10/gensnmpdef 1.10/gensnmptree 1.10/lib 1.10/snmp_mibII 1.10/snmp_ntp 1.10/snmpd 1.11 1.11/config 1.11/contrib 1.11/gensnmpdef 1.11/gensnm...

2008-12-20 Thread Hartmut Brandt
Author: harti Date: Sat Dec 20 16:44:43 2008 New Revision: 186357 URL: http://svn.freebsd.org/changeset/base/186357 Log: Flatten bsnmp vendor area. Added: vendor/bsnmp/1.10/NEWS - copied unchanged from r186355, vendor/bsnmp/1.10/contrib/bsnmp/NEWS vendor/bsnmp/1.10/README -

svn commit: r186358 - in vendor/bsnmp/dist: . config gensnmpdef gensnmptree lib snmp_mibII snmp_ntp snmpd

2008-12-20 Thread Hartmut Brandt
Author: harti Date: Sat Dec 20 17:15:56 2008 New Revision: 186358 URL: http://svn.freebsd.org/changeset/base/186358 Log: Remove the svn:keywords property. Modified: vendor/bsnmp/dist/Makefile.in (props changed) vendor/bsnmp/dist/NEWS (props changed) vendor/bsnmp/dist/README (props

svn commit: r186360 - in vendor/libbegemot: 1.1.1 1.1.1/contrib dist dist/contrib

2008-12-20 Thread Hartmut Brandt
:00:00 1970 (empty, because file is newly added) +++ vendor/libbegemot/1.1.1/rpoll.c Sat Dec 20 17:30:32 2008 (r186360, copy of r186358, vendor/libbegemot/1.1.1/contrib/libbegemot/rpoll.c) @@ -0,0 +1,714 @@ +/* + * Copyright (c)1996-2002 by Hartmut Brandt + * All rights reserved

svn commit: r186361 - vendor/libbegemot/dist

2008-12-20 Thread Hartmut Brandt
Author: harti Date: Sat Dec 20 17:31:57 2008 New Revision: 186361 URL: http://svn.freebsd.org/changeset/base/186361 Log: Remove the svn:keywords property from the vendor files. Modified: vendor/libbegemot/dist/rpoll.c (props changed) vendor/libbegemot/dist/rpoll.h (props changed)