summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: removed leading (non-sense) .Ns call.ru2001-02-061-1/+1
|
* mdoc(7) police: simplify construct.ru2001-02-061-6/+1
|
* mdoc(7) police: correct .Dd, add missing .El.ru2001-02-061-1/+2
|
* mdoc(7) police: .Xr name -> .Nmru2001-02-061-1/+1
|
* mdoc(7) police: correct .Dd format.ru2001-02-061-1/+1
|
* mdoc(7) police: minor style/formatting fixes.ru2001-02-061-5/+7
|
* Regen.n_hibma2001-02-062-2/+17
|
* Add a comment about the fact that adding an ID doesn't actually do anything.n_hibma2001-02-061-0/+15
|
* mdoc(7) police: minor style/formatting fixes.ru2001-02-061-6/+10
|
* Damn! that was the wrong patch! get it right this time....sos2001-02-061-1/+1
|
* Our manual pages are no longer in /usr/man, but in /usr/share/man.asmodai2001-02-063-5/+13
| | | | Also, add the default #!/bin/sh for shellscripts, as well as $FreeBSD$.
* Fix the clone functionality in atapi-cd, it didn't work forsos2001-02-063-6/+17
| | | | | devs other than the first, and allowed to clone a nonexistent device..
* Fix typo: compatability -> compatibility.asmodai2001-02-0625-34/+34
| | | | Compatability is not an existing english word.
* Fix typo: compatability -> compatibility.asmodai2001-02-064-4/+10
| | | | | | Compatability is not an existing english word. Add $FreeBSD$.
* Fix typo: seperate -> separate.asmodai2001-02-0635-39/+39
| | | | Seperate does not exist in the english language.
* Fix typo: seperate -> separate.asmodai2001-02-062-4/+5
| | | | | | Seperate does not exist in the english language. Also add $FreeBSD$ to README.
* Fix typo: seperate -> separate.asmodai2001-02-0619-23/+23
| | | | | | Seperate does not exist in the english language. Submitted to look at by: kris
* Fix typo: seperate -> separate.asmodai2001-02-061-1/+2
| | | | | | | | Seperate does not exist in the english language. Also add $FreeBSD$ Submitted to look at by: kris
* Add man page for VOP_GETVOBJECT, VOP_CREATEVOBJECT and VOP_DESTROYVOBJECTbp2001-02-062-1/+114
| | | | | | operations. Reviewed by: sheldonh
* Fix child's SIGSTOP behaviour in scripts.cracauer2001-02-061-1/+2
| | | | | | | | | | | | | | | | | | When a child is receiving SIGSTOP, eval continues with the next command. While that is correct for the interactive case (Control-Z and you get the prompt back), it is wrong for a shellscript, which just continues with the next command, never again waiting for the stopped child. Noted when childs from cronjobs were stopped, just to make more processes (by wosch). The fix is not to return from a job wait when the wait returned for a stopped child while in non-interactive mode. This bahaviour seems to be what bash2 and ksh implement. I tested for correct behaviour for finnaly killing the child with and without forgrounding it first. When not foregrouding before killing, the shell continues with the script, which is what the other shells do as well. Reviewed by: Silence on -current
* Fix typo: depricated -> deprecated.asmodai2001-02-061-1/+1
|
* Convert if_multiaddrs from LIST to TAILQ so that it can be traversedphk2001-02-0647-112/+76
| | | | | | backwards in the three drivers which want to do that. Reviewed by: mikeh
* Fix typo: wierd -> weird.asmodai2001-02-064-4/+4
| | | | There is no such thing as wierd in the english language.
* Fix typo: wierd -> weird.asmodai2001-02-068-8/+8
| | | | There is no such thing as wierd in the english language.
* Fix typo: wierd -> weird.asmodai2001-02-061-1/+1
|
* Fix typo: teh -> the.asmodai2001-02-061-1/+1
|
* Add vcount.9 / count_dev.9.asmodai2001-02-062-1/+71
| | | | | | | Touched up a bit and added some consistency to the text by your's truly. PR: 23745 Submitted by: Andrew Stevenson <andrew@ugh.net.au>
* Ack, that will teach me to grep for "symbolic link" as well as "symlink" injkh2001-02-061-0/+1
| | | | | | | the commit logs - I just found the reason for the self-pointing symlink, as documented in revision 1.517 by phk, who committed the change over a year ago. Accordingly, put the feature back and drop all plans to MFC the previous "fix".
* Remove the annoying ftp area symlink pointing at ourselves - people keepjkh2001-02-061-1/+0
| | | | | | asking what it's for and I can't answer since I can't see any conceivable use for it. Unless someone corrects that impression, I'll also MFC this change in a few days.
* Add package signing utilities; somebody might actually want them.wes2001-02-0617-0/+2514
| | | | | | | | | These are not enabled in the pkg_install Makefile as of yet; adding the "sign" directory to the SUBDIR list will enable building of sign. Submitted by: Wes Peters Obtained from: Original framework from OpenBSD 2.7, X.509 bits from DoBox.
* o Introduce automated log rotation for /var/log/console, therwatson2001-02-061-0/+1
| | | | | | | | | | | default syslog target for console messages (when enabled in syslog.conf). Use the same rotation defaults as with /var/log/messages -- every 100kb of log, compress back logs, and keep five rotated logs. o Note: phk also thought it would be useful to force rotation each boot. This commit does not introduce such a rotation. Reviewed by: phk
* Don't set a bad example by putting the function type in ".Fo".bde2001-02-061-2/+4
|
* Debogotified #includes in synopsis. Paths beginning with /sys werebde2001-02-061-2/+2
| | | | | only required when dev/ppbus wasn't installed, and they should not been delimited by <> even then.
* Fixed missing include in synopsis. <sys/types.h> is still a prerequisitebde2001-02-063-0/+3
| | | | for almost everything.
* Fixed missing #include and wrong prototypes. Most of these bugs werebde2001-02-061-11/+13
| | | | | duplicated in libc_r/man/*.3 but were fixed years ago there. Here they were hiding under mdoc errors.
* Fixed missing include of <unistd.h> and wrong prototype for setkey().bde2001-02-061-1/+2
|
* Declare strunvisx().bde2001-02-061-0/+1
|
* Fixed prototype of logout() (const poisoning).bde2001-02-061-1/+1
|
* Fixed prototypes. About half of them were wrong (mainly due to constbde2001-02-063-30/+30
| | | | poisoning having not reached here).
* Added used include of <sys/cdefs.h>.bde2001-02-064-0/+16
| | | | Declare all the interfaces documented in usb.3 (2 were missing).
* Fixed C error(s) in synopsis.bde2001-02-066-4/+6
|
* Fixed wrong return type for ftpLoginAf() in synopsis.bde2001-02-051-1/+1
|
* Fixed bitrot in prototype(s) in synopsis.bde2001-02-051-1/+1
|
* Note that find -empty works on files, not just directories.bmah2001-02-052-4/+4
| | | | Submitted by: olgeni
* New release notes: ipfilter 3.4.16, pcm(4) updates including kobj andbmah2001-02-052-12/+35
| | | | | | new drivers, pkg_info(1) -g, tftp(1)/tftpd(8) large file transfers. MFCs noted: pkg_create(1)/pkg_install(1) and bzip2-ed packages.
* Fix bad patch from a few days ago. It broke some bridging.julian2001-02-051-9/+10
|
* Add a dummy disconnect function so that the socket code doesn't leap intojulian2001-02-051-2/+7
| | | | | space when it calls the disconnect PRU function without checking that it there.
* - Minimize the amount of duplicated code for the PREEMPTION #ifdef, it nowjhb2001-02-051-27/+9
| | | | | | | | | | | | only covers about 3-4 lines. - Don't lower the IPL while we are on the interrupt stack. Instead, save the raised IPL and change the saved IPL in sched_lock to IPL_0 before calling mi_switch(). When we are resumed, restore the saved IPL in sched_lock to the saved raised IPL so that when we release sched_lock we won't lower the IPL. Without this, we would get nested interrupts that would overflow the kernel stack. Tested by: mjacob
* Make netgraph modules refuse to link with modules of a different ABI version.julian2001-02-053-39/+75
| | | | | | also try implement teh documented behaviour in socket nodes so that when there is only one hook, an unaddressed write/send will DTRT and send the data to that hook.
* mdoc(7) police: modifiers should be marked with .Cm, not .Ar.ru2001-02-051-14/+19
|
OpenPOWER on IntegriCloud