summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* Convert to mdoc + typos.charnier1998-02-195-1666/+1405
|
* MFMP: Allow 8 character login names.brian1998-02-195-27/+57
| | | | Do the login()/logwtmp()/logout() as id 0.
* Style police service brought to you by: bdeeivind1998-02-193-11/+7
|
* Re-introduce '-n' - now a no-op for backwards compatibility only.eivind1998-02-191-2/+5
| | | | Requested by: David Quattlebaum <sasdrq@unx.sas.com>
* MFMP: LogWARN rather than LogERROR when we can't createbrian1998-02-181-5/+5
| | | | our diagnostic socket.
* Don't leak memory when the peer sends PROTO_COMPD packetsbrian1998-02-181-2/+2
| | | | without negotiating compression first.
* Disconnect (nonexistent) qcamcontrolmsmith1998-02-181-3/+3
| | | | Submitted by: pst
* Remove qcam support programs.msmith1998-02-185-404/+0
| | | | Submitted by: pst
* Make '-n' the default, and introduce a new flag '-r' to get oldeivind1998-02-185-26/+33
| | | | | behaviour. Also indicate which option(s) are unknown if there are any old-style options.
* Doh! Replace backslash that got eaten by gremlins in the last commit.wpaul1998-02-181-2/+2
|
* Apparently, if fprintf() fails, it can return any negative valueguido1998-02-161-3/+3
| | | | Pointed out by: Bruce
* Eliminate the idea of nested "playpens" entirely - it just obfuscatedjkh1998-02-165-32/+45
| | | | the code and, in at least one case, made it more dangerous to no gain.
* Check return values of fprintf, fclose (this one is overdone I guess)guido1998-02-151-7/+12
| | | | | | and pw_db->close. PR: 4202 (probably, I askd the submitter) Obtained from: OpenBSD
* Clarify the -batch arguments.steve1998-02-141-1/+5
| | | | | PR: 5677 Submitted by: Adrian Filipi-Martin <adrian@virginia.edu>
* Overhaul this manpage - removing typos, awkward phrasing, and addressingsteve1998-02-141-111/+123
| | | | | | | a few technical faults. PR: 5692 Submitted by: dannyman@arh0300.urh.uiuc.edu
* MF22: correct bogus failure return.jkh1998-02-132-4/+4
|
* Close PR #2206: fix the services.byname target so that it can handlewpaul1998-02-131-5/+7
| | | | | | | | | | /etc/services entries with any protocol instead of just udp and tcp. Rather thani having the awk script explicitly search for 'udp' or 'tcp' in the second field using index(), use split() to break up the field at the '/' character if it exists, which extracts the protocol from the field no matter what it is. PR: 2206
* Add an entry for the Brazilian keymap with accent key definitionsyokota1998-02-122-2/+4
| | | | in the keymap menu.
* pwd_mkdb option '-c' was renamed to -C some weeks ago.wosch1998-02-111-4/+4
| | | | | PR: bin/5715 Submitted by: dannyman <dannyman@arh0300.urh.uiuc.edu>
* Fix a bug in the database handle caching. This has to do with the way thewpaul1998-02-114-12/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | underlying database code works. When dealing with first/next queries, you have the notion of a database 'cursor,' which is essentially a file pointer for the database. To select the first entry, you do a fetch with the R_FIRST flag set, then you can use the R_NEXT flag to enumerate the other entries in the database. Unfortunately, doing a direct fetch with no flag does _not_ set the 'cursor,' so you can't do a direct fetch and then enumerate the table from there. The bug is that cached handles generated as the result of a YPPROC_MATCH were being treated as though they were the same as handles generated by a YPPROC_FIRST, which is not the case. The manifestation is that if you do a 'ypmatch first-key-in-map map' followed by a yp_first()/yp_next() pair, the yp_first() and yp_next() both return the first key in the table, which makes the entry appear to be duplicated. A couple smaller things since I'm here: - yp_main.c and yp_error.c both have a global 'int debug' in them. For some reason, our cc/ld doesn't flag this as a multiply defined symbol even though it should. Removed the declaration from yp_main.c; we want the one in yp_error.c. - The Makefile wasn't installing ypinit in the right place.
* Move handle_signals() to before the FD_SETs. handle_signals()brian1998-02-101-3/+6
| | | | | | may result in a our modem closing after it's made its way into the fd_set, resulting in a program exit (with select(): bad file descriptor) rather than a dropped link.
* Form device names correctly with new unit# syntax.jkh1998-02-102-8/+26
|
* Totally change the way that devices are made in the MFS and subsequentlyjkh1998-02-107-312/+349
| | | | | | | | probed in sysinstall. Rather than make template devices and use up lots of inodes, also restricting the number of devices that can be dealt with, mknod all necessary devices as necessary using built-in information. This removes a number of constraints on the number and type of devices that sysinstall can see.
* All our options are new-style now - enable the warning if unrecognizedeivind1998-02-091-3/+1
| | | | (that is, old-style) options are found.
* Remove some ancient cruft discovered during a recent code review.jkh1998-02-081-45/+1
|
* MF22: reset root flags properly.jkh1998-02-062-2/+6
|
* This seems to fix my problem that after resume/suspend, sometimesguido1998-02-041-3/+15
| | | | | | | | pccard claims that the driver is already allocated. It works around a race when pccardd gets woken up too late after a resume. This is a 2.2.6 candidate. Reviewed by: nate@freebsd.org
* Fix Makefile.yp so that it no longer creates a temporary file calledwpaul1998-02-041-83/+47
| | | | | | | | /tmp/ypmake, thereby fixing problems with successive map updates possibly reading stale copies of this file left behind by a previous failed run. PR: 5571
* Install printcap.5 from here.wollman1998-02-041-1/+2
|
* Add comment describing settingsache1998-02-041-3/+10
| | | | Use 66 lines on the page
* Add Russian printer filters, mandatory because hardware code page 866ache1998-02-045-2/+273
| | | | is different with KOI8-R
* Convert to mdoc.charnier1998-02-041-25/+30
|
* Add Genius PnP Mouse (simple one)ache1998-02-041-3/+5
|
* Merge from MP branch:brian1998-02-041-2/+2
| | | | Correct magic number format string
* Typo.wosch1998-02-021-2/+2
|
* setpwent now has a void return type, so remove the now bogus cast.steve1998-02-011-1/+1
|
* Typo: PAT -> FAT.steve1998-02-012-4/+4
| | | | PR: 5593
* Don't moan about not creating tunX.pid and ttyX.if if RELEASE_CRUNCHbrian1998-01-293-5/+19
| | | | is defined.
* Talk a bit about ongoing development.brian1998-01-291-0/+22
|
* Make it clear that aliasing is done on the public interface, notbrian1998-01-291-2/+21
| | | | the private one.
* MF22: only fclose() OpenConn if non-NULL.jkh1998-01-281-3/+5
|
* Cosmetic:brian1998-01-274-35/+22
| | | | | | | | | | Don't mention the authors name at startup. He's already credited in the man page. Instead, make the message consistent with the one given to the diagnostic port (and fix the grammar when entering `term' mode). Don't credit the zlib author in the man page as ppp isn't linked directly with zlib (it's shared). Mention when the OpenBSD port was first made available.
* Update the keymap menu.yokota1998-01-274-10/+24
|
* A bit of the dpt userland utilities that got left out.julian1998-01-263-0/+136
|
* Obtained from: Simon Shapirojulian1998-01-2620-0/+1737
| | | | Userland utilities to control, and monitor a DPT RAID system.
* The status command prints the audio position, the media catalog and thejmz1998-01-262-29/+61
| | | | | | | volume value for the disc. It is now possible to specify additional arguments (audio, volume, media) to print only a subset of the full status. This is particularly useful with drives which stop playing when asked to return the catalog number.
* Allow comments to begin with multiple '#' characters.steve1998-01-251-22/+22
| | | | | PR: 4452 Submitted by: Joao Carlos Mendes Luis <Jonny@mailhost.coppe.ufrj.br>
* Fix a couple of typos.steve1998-01-251-4/+5
| | | | | PR: 5561 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
* Fix typo.yokota1998-01-251-8/+8
| | | | PR: docs/5562
* Fix error message.brian1998-01-241-10/+5
| | | | | Don't complicate the test compilation mentioned at the start of the file.
OpenPOWER on IntegriCloud