summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Code merge and diff reduce with "base" telnet. This is the "later"markm2001-08-2050-580/+566
| | | | | telnet, so it was treated as the reference code, except where later commits were made to "base" telnet.
* Code merge and diff reduction between this and crypto telnet.markm2001-08-2014-567/+252
| | | | | Also remove useless AUTHENTICATION code. We have never compiled this here, and it is doubtful that it even works without crypto.
* Feature merging and diff reduction between this code and crypto telnet.markm2001-08-2010-447/+279
| | | | | Also remove conditional (AUTHENTICATION) code as we have never compiled it here, and it is doubtful that it even works in this scenario.
* Handle snprintf() returning -1brian2001-08-202-6/+26
| | | | MFC after: 2 weeks
* No functional changes, but:markm2001-08-205-38/+47
| | | | | | | | | o unifdef AUTHENTICATE. We have never compiled this code, and its doubtful it will even work in this case. o Style changes (some ansification, some comment updating) o Diff reduction and code style merging with crypto telnet.
* Don't misuse the return from snprintf.brian2001-08-201-5/+7
| | | | MFC after: 2 weeks
* Properly change old interface addresses so that their destination isbrian2001-08-201-1/+2
| | | | 255.255.255.255 if our new destination address conflicts.
* Add some comments to explain what's going on herebrian2001-08-201-9/+21
|
* Don't overflow a buffer from command line arguments.kris2001-08-201-2/+6
| | | | MFC after: 2 weeks
* mdoc(7) police: markup nits.ru2001-08-201-9/+17
|
* Merge vendor branch onto mainline (try to fix HAVE_KERBEROS)peter2001-08-201-2/+2
|
* mdoc(7) police: simplify literal display block.ru2001-08-201-2/+4
|
* mdoc(7) police: fixed markup, removed the extra word.ru2001-08-201-16/+16
|
* Part II of libss retirement: zap mk_cmds too.kris2001-08-209-552/+0
| | | | Pointy hat to: kris
* The timed protocol is not implemented in a compatible way by all vendors;kris2001-08-202-7/+23
| | | | | | | | | | | | | | the size of the tsp_name field is OS-dependent. 4.3BSD used a 32-byte field, FreeBSD uses MAXHOSTNAMELEN and RedHat apparently uses a 64-byte field. As a result, sanity checking code added a few months ago to detect short packets will fail when interoperating with one of these other vendors. Change the short packet detection code to expect a minimum packet size corresponding to the 4.3BSD implementation, which should be a safe minimum size. Submitted by: Stephen Whiteley <stevew@best.com> (based on) PR: misc/29867
* Fix an SGML glitch.bmah2001-08-202-2/+2
|
* Fix grammar.dd2001-08-201-1/+2
|
* Respect the -N flag when changing directory attributes in setdirmode).dd2001-08-201-4/+6
| | | | | PR: 29671 Submitted by: Sascha Blank <sblank@addcom.de>
* Use `an' where appropriate.dd2001-08-202-2/+2
|
* Pass the username we just made to pwd_mkdb so that the latter doesn'tdd2001-08-201-3/+4
| | | | | | | have to regenerate the entire database. PR: 25798 Submitted by: Domas Mituzas <domas.mituzas@delfi.lt>
* Sync the default module search path with the one indd2001-08-201-1/+1
| | | | | | | sys/boot/common/module.c. PR: 21405 Submitted by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org>
* Shoot (and kill) the second person with a high-powered rifle.dd2001-08-201-63/+64
|
* When attempting to change the default route, don't write the gatewaybrian2001-08-201-7/+26
| | | | | | | | | | and mask to the routing socket, otherwise the update fails. Warning provided by: markm The code here was broken for FreeBSD when IPv6 support was added, but was fixed for OpenBSD. OpenBSD expects the gateway and mask to be supplied and fails the update otherwise.
* Limit the amount of KVM reserved for the buffer cache and for swap-metadillon2001-08-208-4/+70
| | | | | | | | | | | | | | | information. The default limits only effect machines with > 1GB of ram and can be overriden with two new kernel conf variables VM_SWZONE_SIZE_MAX and VM_BCACHE_SIZE_MAX, or with loader variables kern.maxswzone and kern.maxbcache. This has the effect of leaving more KVM available for sizing NMBCLUSTERS and 'maxusers' and should avoid tripups where a sysad adds memory to a machine and then sees the kernel panic on boot due to running out of KVM. Also change the default swap-meta auto-sizing calculation to allocate half of what it was previously allocating. The prior defaults were way too high. Note that we cannot afford to run out of swap-meta structures so we still stay somewhat conservative here.
* There is no "(integer)" type; it's called "(int)".dd2001-08-201-3/+3
| | | | | PR: 20749 Submitted by: Ralf S. Engelschall <rse@engelschall.com>
* Add new entires for firewall_flags, amd_map_program, anddd2001-08-201-4/+38
| | | | | | | enable_quotas. Plus other assorted fixes. PR: 20479 Submitted by: Ralf S. Engelschall <rse@engelschall.com>
* Mark up IPFIREWALL in .Dv.dd2001-08-201-1/+3
|
* Capitalize the first word in sentences, and put periods at the end ofdd2001-08-201-3/+3
| | | | sentences.
* Expand a little on the note about apm_battery. Note that apmd candd2001-08-192-4/+10
| | | | | | | | execute commands when the battery level changes, and point users at the examples in /etc/apmd.conf since this stuff isn't (yet?) documented in the manual page. Also note its MFC. Submitted by: nsayer
* Add some casts.brian2001-08-192-3/+3
| | | | | Not spotted by: FreeBSD's gcc version 2.95.3 20010315 (release) Spotted by: OpenBSD's gcc version 2.95.3 20010125 (prerelease)
* Add a missing % in a format string.brian2001-08-191-1/+1
| | | | | Not spotted by: FreeBSD's gcc version 2.95.3 20010315 (release) Spotted by: OpenBSD's gcc version 2.95.3 20010125 (prerelease)
* Avoid a compiler warningbrian2001-08-191-0/+2
| | | | | Not spotted by: FreeBSD's gcc version 2.95.3 20010315 (release) Spotted by: OpenBSD's gcc version 2.95.3 20010125 (prerelease)
* Zap LIBSSkris2001-08-191-1/+0
|
* Say goodbye to libss, which somehow managed to crouch hidden in the treekris2001-08-1920-1543/+2
| | | | for long after it was used.
* Fix logic errors in pthread_cond_wait() and pthread_cond_timedwait() thatjasone2001-08-193-204/+156
| | | | | | could cause deadlock after interruption due to a signal. Reviewed by: deischen
* Fix ISA machines. Also, make it possible for the new pccardd to runimp2001-08-191-40/+61
| | | | | | | | on older kernels correctly. Terminate the loop when we find a suitable irq. Also, only try to select from the pool. Cleaned up the two cases (IRQ picked by the user and ?) into one. MFC upon re approval.
* Remove the building of a kerberosIV'ed cvs. `make release' has been brokenobrien2001-08-191-3/+6
| | | | for the past 9 days!
* Add about rewind+errno, describe ESPIPE, minor formatting.ache2001-08-191-6/+23
|
* Silence non-constant format string warnings by marking functionskris2001-08-1914-29/+29
| | | | | | | as __printflike()/__printf0like(), adding const, or adding missing "%s" format strings, as appropriate. MFC after: 2 weeks
* Forced commit to fix last commit message:imp2001-08-190-0/+0
| | | | | The card can be removed in pcic's ISR. We don't call the card's ISR when no card exists.
* Improve interlocking for card removal. We now can remove the card inimp2001-08-193-28/+60
| | | | | | | | | the ISR. We keep track of the card state and don't call the IRS when the card isn't inserted. This helps quite a bit with card ejection problems that Ian was seeing. Submitted by: Ian Dowse MFC upon: re approvel.
* Constify m_copydata.julian2001-08-191-1/+1
| | | | | | | | | this allows constants to be copied without giving errors. (removes a couple of warning messages in the kernel.) Note: uipc_mbuf.c is a forced commit as it was accidentally included in another commit. MFC after: 2 weeks
* Forgot to remove this un-needed test. (M_WAITOK won't fail)julian2001-08-192-3/+1
| | | | | | | | | I vaguely remember someone once proving it COULD return NULL.. was that changed? Reminded by: BDE MFC after: 2 weeks
* Better handling of the return from snprintfbrian2001-08-181-3/+8
|
* Better handling for the return of snprintf().brian2001-08-182-5/+12
|
* If AF_INET6 isn't available in the kernel, revert to creating AF_INETbrian2001-08-181-15/+19
| | | | listening sockets in ``set server''.
* Don't needlessly duplicate what's basically the same copyright.jake2001-08-181-26/+1
|
* Back out the previous fix to deal with kernels that don't support IPv6,brian2001-08-186-69/+44
| | | | | | | | | | | | | | | and implement a far more subtle and correct fix. The reason behind the infinite loop was that ppp was trying to make up initial IPv6 numbers and wasn't giving up when it failed unexpectedly to assign the addresses it just fabricated to it's interface (thinking that the reason was because another interface was using the same address). It now attempts this up to 100 times before just failing and trying to muddle along (in reality, this should never happen more than a couple of times unless our random number generator doesn't work). Also, when IPv6 is not available, don't even try to assign the IPv6 interface address in the first place...
* Implement cpu_wait().jake2001-08-181-3/+26
|
* Increase the size of the phys_avail memory map. Implement pmap_dispose_proc.jake2001-08-181-9/+46
| | | | | Turn some more potentially import functions into nops so we can do stuff until they matter.
OpenPOWER on IntegriCloud