summaryrefslogtreecommitdiffstats
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* Replace a reference to /kernel with /boot/kernel/kerneleivind2003-08-261-1/+1
|
* Reformat FBSD_{START,END}FILE_SPEC to FSF coding standards.obrien2003-08-243-45/+33
| | | | Use these in our i386, amd64, and alpha platforms.
* Remove the # ("stringify") operator from the printf() arguments intjr2003-08-231-1/+1
| | | | | | the iprintf macro. It was causing the actual format string and variable names to be written out, instead of substituting the values of the variables into the format string.
* Enable warn_system_heders by default.kan2003-08-222-1/+2
|
* Merge FreeBSD modifications into gcc 3.3.1-prerelease:kan2003-08-221-5/+7
| | | | | | | | | 1.2 don't let gcc(1) hide warnings in system headers. Don't disable warning suppression unconditionally, but rather make in dependent on warn_system_headers flag, one should be able to use -Wno-system-headers flag if warnings from system headers are not desired.
* Merge FreeBSD modifications into gcc 3.3.1-release:kan2003-08-221-11/+23
| | | | 1.8 printf format error fixes.
* Merge FreeBSD modifications into gcc 3.3.1-release:kan2003-08-221-1/+1
| | | | 1.2 Localize the version string.
* Merge FreeBSD modifications into gcc 3.3.1-release:kan2003-08-221-0/+9
| | | | 1.3 suppress warnings on K&R main.
* Merge FreeBSD modifications into gcc 3.3.1-release:kan2003-08-221-2/+2
| | | | | | 1.2 -fformat-extensions. 1.7 FORCE_OPTIMIZATION_DOWNGRADE knob for Alpha. 1.14 -O0 -O1 optimize alignment for time, not size.
* Stock files.kan2003-08-222-4/+7
|
* This commit was generated by cvs2svn to compensate for changes in r119262,kan2003-08-221-0/+8
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Gcc 3.3.1-release libf2c bits.kan2003-08-221-0/+8
| |
* | This commit was generated by cvs2svn to compensate for changes in r119260,kan2003-08-221-0/+8
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Gcc 3.3.1-release Objective C support bits.kan2003-08-221-0/+8
| |
* | This commit was generated by cvs2svn to compensate for changes in r119258,kan2003-08-229-61/+9466
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Gcc 3.3.1-release C++ support bits.kan2003-08-229-61/+9466
| |
* | This commit was generated by cvs2svn to compensate for changes in r119256,kan2003-08-2252-1255/+2380
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Gcc 3.3.1-release.kan2003-08-2260-1289/+2437
| |
* | Tell the toolchain to look for rtld in /libexec instead of /usr/libexec.gordon2003-08-174-4/+4
| |
* | Implement what has been documented for a long time: make -debug switchharti2003-08-131-0/+5
| | | | | | | | | | | | on socket debugging. Okay'ed by: markm
* | Change name of state_link() to state_polling() to make itmbr2003-08-103-49/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | more clear what it does. Trim interface_active() to just do what it should do. Check if we got link or not and if the NIC supports it. No special treatment for mediachecks here anymore. Simplify the code a lot, and remove doublicated parts. Fix two minor spelling errors. Add one missing #ifdef ENABLE_POLLING_MODE Reviewed by: mdodd
* | Fix devices which do not support ifm_status. Always returnmbr2003-08-091-8/+13
| | | | | | | | | | | | | | TRUE for them. Reported by: mdodd Tested by: Craig Rodrigues <rodrigc@crodrigues.org>
* | Add all interface polling patches.mbr2003-08-071-2/+8
| |
* | Do not poll during discover. Add a polling tunable to the interfacembr2003-08-072-4/+26
| | | | | | | | | | | | struct to be able to turn polling on/off. Tested by: Larry Rosenman <ler@lerctr.org>
* | - Fix the polling code to work with media settings in dhclient.conf.mbr2003-08-072-38/+189
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Rename linkstatus to linkstate which is more correct. - Sort any leases each time we loose and regain link. With the first version we spammed the dhclient.leases file. - When there was no link on a interface, polling has been done twice. This has been fixed with a bigger sleep interval. - interface_active() now returns only a assumed state of the link. If we are using media settings, we cannot be sure that the link actually works. That means we assume that the link is working and continue to send requests as usual on the interface and loop over all possible media options. Polling is still done. If your interface gets suddenly link, dhclient will send a dhcp discover request. After all media settings have been tried a few times, dhclient will sleep. If one does change networks very often, it can help to set the "retry timeout" to a low value like 100 seconds. The default is over six minutes. Tested by: Larry Rosenman <ler@lerctr.org>, imp
* | Change ieee802 to ieee80211.mbr2003-08-062-53/+53
| | | | | | | | | | | | Add bogospaces to match the ISC style. Suggested by: eivind
* | - Correct the path to the dot.nsmbrc sample file.simon2003-07-311-1/+2
| | | | | | | | | | | | | | | | - Add FreeBSD CVS tag. PR: docs/35649 Submitted by: roam Approved by: ceri (mentor)
* | Update for the 2003/07/29 import.ru2003-07-301-4/+5
| |
* | This commit was generated by cvs2svn to compensate for changes in r118194,ru2003-07-305-30/+60
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Vendor import of bwk's 29-Jul-2003 release.ru2003-07-305-30/+60
| | |
* | | Fix dhclient infinite loop on ro /etc/resolv.confmbr2003-07-281-5/+11
| | | | | | | | | | | | | | | | | | | | | Submitted by: C J Michaels <cjm2@earthling.net> Reviewed by: David W. Hankins PR: 38778 ISC-Bug: 5754
* | | Don't wait forever if there is no link, go to backgroundmbr2003-07-281-0/+2
| | | | | | | | | | | | after 2 x polling time.
* | | Define $FreeBSD$ at the right place.mbr2003-07-282-5/+3
| | |
* | | Enable dhclient to poll the interface state and send onlymbr2003-07-285-6/+240
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | requests if the interface has an active link. This is a great benefit if you often change networks with your laptop and you do not like to kill/restart dhclient all the time. Changes are automatically detected and the link is refreshed. The change allows us to start dhclient in background mode Enable dhclient to poll the interface state and send only requests if the interface has an active link. This is a great benefit if you often change networks with your laptop and you do not like to kill/restart dhclient all the time. Changes are automatically detected and the link is refreshed. The change allows us to start dhclient in background mode while the network cable is not plugged in. To control the polling interval, the option -i has been introduced. It takes seconds as parameter, the minimum is one second, the default is five seconds. Polling is done in seconds, not microseconds, because dhclient does internally work with timeouts in seconds. This change will be part of the next major ISC-dhcpd release. Tested by: bms, imp, and many many others. Reviewed by: murray, eivind, dhclient folks
* | | Fix some off-by-one errors dealing with limits of server names,tjr2003-07-271-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | usernames, workgroup names and passwords. We can now connect to servers with 15-character NetBIOS names. (Some versions of Windows use semi-random 15-char names by default.) PR: 46902
* | | Add notice about the local change in r1.25mbr2003-07-261-0/+1
| | |
* | | Fixes for 64 bit cleanliness. The length arg to sysctl is a pointer topeter2003-07-261-1/+2
| | | | | | | | | | | | | | | | | | size_t not int. Reviewed by: bp
* | | Use #include <string.h> rather than <strings.h> so that the strdup()peter2003-07-261-1/+2
| | | | | | | | | | | | | | | | | | | | | prototype gets brought into scope. This is a big deal for 64 bit systems where the default return value of 'int' is != pointer. Reviewed by: bp
* | | Fix an annoying bug in tar. When it converted 'tar zcf' to 'tar -z -c -f'peter2003-07-241-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | it forgot to null terminate the new argv[] array. If you mixed this with $TAR_OPTIONS, phkmalloc and a whole bunch of other variables, you could end up with a segfault. This isn't strictly a phkmalloc victory since tar walks off the end of an array rather than use uninitialized malloc memory, but phkmalloc makes it easier to provoke.
* | | This commit was generated by cvs2svn to compensate for changes in r117839,des2003-07-211-11/+11
|\ \ \ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | MFP4: revert constification of pam_message.msg (perforce change #34785)des2003-07-211-11/+11
| | | |
| * | | These files have been removed from the distribution.des2003-07-1513-600/+0
| | | |
* | | | Pass getvfsbyname() the address of a struct xvfsconf instead oftjr2003-07-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | struct vfsconf. This silences a warning, but could also prevent stack corruption problems if xvfsconf ever became larger than vfsconf. PR: 53863 Submitted by: Lukas Ertl
* | | | Changes to allow top to decide whether or not to show multiple threads perjulian2003-07-173-5/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | process. Option -H enables it and it is toggled at the interactive screen by 'H'. Submitted by: Jung-uk Kim <jkim@niksun.com>
* | | | This file became OBE when we went to GCC 3.obrien2003-07-171-257/+0
| | | |
* | | | This commit was generated by cvs2svn to compensate for changes in r117615,des2003-07-1513-600/+0
| | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
* | | | This commit was generated by cvs2svn to compensate for changes in r117610,des2003-07-1599-393/+22505
|\ \ \ \ | |/ / / | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Vendor import of OpenPAM Dogwood.des2003-07-1599-393/+22505
| | | |
* | | | FreeBSD does not use this code, but ftpd_popen() contains a buffer overflow.kris2003-07-131-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We might as well patch it. Submitted by: Przemyslaw Frasunek <venglin@freebsd.lublin.pl> PR: bin/23352 MFC After: The average time before an unpatched Windows 2000 server gets owned
* | | | Do not override FP rounding options for 32bit platforms. amd64 doesn'tkan2003-07-121-4/+6
| | | | | | | | | | | | | | | | need this.
OpenPOWER on IntegriCloud