summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't invite trouble by waving the 'Dangerously Dedicated' (DD) optionpeter2001-01-152-18/+4
| | | | | | | | | | at people. This has been sitting in my tree for a few months now. I have spoken with quite a few folks about this and the support for doing this was pretty strong. I dont remember names though, so I cannot share the blame :-(. Note that this does not *remove* DD mode, it just stops waving it at new users. You can still set it via config files etc, and the bootblocks and kernel still support it. You can still use disklabel to make true DD disks.
* Describe that the CDROM environment variable now affects whichjoe2001-01-141-0/+9
| | | | device is used by default.
* Spell my name right in the copyright.des2001-01-141-1/+1
|
* Fix a nasty bug whereby if the package file didn't have a version numberpaul2001-01-141-7/+13
| | | | | | | | then all packages would be deinstalled! The tightening up of version number checking also fixes a bug where a package file such as gtk.tgz would have resulting in gtk-engines being deinstalled.
* Use fstat to check if descriptor 0 is a socket.brian2001-01-144-61/+102
| | | | Suggested by: julian
* Oops, forgotten to add manpage.iwasaki2001-01-131-0/+80
|
* Add manpage for acpiconf.iwasaki2001-01-131-2/+1
| | | | Submitted by: des
* Fix a bug where pkg_create does not make an md5 entry for the last item insobomax2001-01-121-11/+16
| | | | | | | | | the packing list. Also use switch() instead of zillion "else if ()" and for() loop instead of while() loop for traversing through linked list. MFC candidate. Submitted by: Alec Wolman <wolman@cs.washington.edu>
* Minor mdoc(7) formatting fixes:ru2001-01-121-5/+1
| | | | Removed extraneous .Pp calls and blank lines (mdocNG does not like them).
* Fixed mdoc(7) errors introduced in the previous revision.ru2001-01-121-9/+14
|
* Add manual page for the new itjc ISDN hardware driverhm2001-01-122-1/+71
|
* Small clarification from the driver authorhm2001-01-121-6/+8
| | | | Submitted by: Hans Petter Selasky <hselasky@c2i.net>
* Add the us.pc-ctrl and us.unix keymaps.obrien2001-01-112-2/+2
|
* Add support to name cards supported by the itjc driverhm2001-01-111-6/+5
| | | | Submitted by: Sergio de Souza Prallon <prallon@tmp.com.br>
* mdoc(7) police: formatting fixes.ru2001-01-111-32/+52
|
* New option -m to select multisession mode.sos2001-01-102-92/+190
| | | | | | | | | | | | | | | | WARNING: until now all disks was closed as multisession disks, this is no longer the case, if the -m option isn't used disks are closed as singlesession. The reason is that some drives wont close a disk with one large image on in multisession mode, probably because it "knows" that a new session wont fit on the media resonably. Also update burncd with new stuff from various places that I've collected and modified to my taste, its actually amasing how many thinks up the same enhancements (none mentioned none forgotten): Allow '-' to be used as filename for using stdin. Add 'l' option to take a list of image files from 'filename'
* Liberal application of style(9).joe2001-01-101-665/+758
|
* Bugfix to make configuration of isp/isppp interfaces by using isdnd.rc workhm2001-01-101-12/+10
| | | | Submitted by: bad@k.bsd.de (Christoph Badura)
* Flag an error and remove the program from the list if there isjoe2001-01-101-1/+4
| | | | | | no source directory or no objects can be determined. Initialise a structure variable.
* correct a small typo in isdnd that broke the ppp-expect-password optionhm2001-01-101-2/+2
| | | | Submitted by: Thomas Moestl <tmoestl@gmx.net>
* Move MD <machine/if_wavelan_ieee.h> to MI <dev/wi/if_wavelan_ieee.h>peter2001-01-091-1/+1
|
* Try and stop config(8) from freaking out due to unnecessary paranoiapeter2001-01-041-13/+2
| | | | | | | when using -d. Use realpath(3) to locate the top of the tree rather than trying to manually trim back the results of a getcwd(). Requested by: alfred
* Catch up with rev 1.19 of vnconfig.c .sheldonh2001-01-031-1/+4
|
* Fix typo: s/memberhip/membership/peter2001-01-021-1/+1
| | | | Submitted by: Peter Avalos <pavalos@theshell.com>
* Minor layout fixes.ben2001-01-011-0/+4
| | | | | PR: 24004 Submitted by: Jimmy Olgeni <olgeni@uli.it>
* Check that the hostname field in received packets is NUL-terminated.ben2001-01-011-0/+7
|
* If the first argument doesn't start with '-' assume that it is animp2000-12-312-4/+14
| | | | | | | | | | interface. This augments the default to an appropriate interface code. # These programs should be merged into ifconfig, ala NetBSD, but that's # a fight for another day. Idea from: OpenBSD
* Imply -c when -S is specified, so 'vnconfig -s reserve -S 4 vn1' configures thedillon2000-12-311-0/+2
| | | | device as expected.
* Use macro API to <sys/queue.h>phk2000-12-303-16/+16
| | | | | Submitted by: "Jason" <jsmethers@pdq.net> Reviewed by: /sbin/md5
* update to the current set of mnt_, ufs_ and nfs_ flagsassar2000-12-302-21/+67
| | | | also make man-page correspond to the code
* Use the MACRO API to <sys/queue.h>.phk2000-12-301-4/+4
| | | | Submitted by: "Peter Avalos" <pavalos@theshell.com>
* Change open modes from ">$file" to "> $file" because it's much safer shouldpaul2000-12-301-2/+2
| | | | | | | | | $file not be what you expect, particularly should $file turn out to be "+REQUIRES" since ">+" is a valid open mode. This isn't currently a problem since $file is constructed safely but it removes the potential of future problems. Pointed out by Anton Berezin.
* Log the ``MPPE: MasterKey is invalid...'' message as a CCPbrian2000-12-291-1/+1
| | | | diagnostic rather than a warning.
* Convert from CIRCLEQ to TAILQ.phk2000-12-292-46/+44
|
* Convert to use the <sys/queue.h> macros rather than fiddling with the queueben2000-12-294-13/+11
| | | | | | structure internals. Reviewed by: markm
* mdoc(7) police: get rid of hard sentence breaks, add missing .El, etc.ru2000-12-291-7/+11
|
* Fix the broken options that were in the development version I committed by ↵paul2000-12-281-1/+2
| | | | mistake.
* * Fix a segfault when timed(8) receives a packet with a bad tsp_type.ben2000-12-281-2/+17
| | | | | | | * Check that received packets aren't too short, as this could cause other problems. Reviewed by: imp, markm
* Bring the man page up to date with the current version of the script.paul2000-12-281-3/+25
|
* Add pkg_update, which can replace currently installed ports with new versionspaul2000-12-284-1/+276
| | | | while taking of updating all the dependencies.
* Retire kernfs (userland part).des2000-12-281-1/+4
|
* Prepare for mdoc(7)NG.ru2000-12-2773-423/+294
|
* Prepare for mdoc(7)NG.ru2000-12-272-134/+204
|
* Update to match the progress interface on blank command.sos2000-12-261-1/+16
|
* Fix output of -v option.toshi2000-12-241-0/+1
|
* Clean up the source directory finding code, and in the process fix ajoe2000-12-241-16/+24
| | | | problem that occurs when a program's source isn't found.
* Ensure that received packets are at least as long as the rwho packetiedowse2000-12-221-4/+10
| | | | | | | | | | | | | header before trying to process them. Without this sanity check, rwhod can attempt to byte-swap all of memory when a short packet is received, and so dies with a SIGBUS. While I'm here, change two other syslog messages to be more informative: use dotted quad rather than hex notation for IP addresses, and include the source IP in the 'bad from port' message. PR: bin/14844 Reviewed by: dwmalone
* Prepare for mdoc(7)NG.ru2000-12-181-3/+4
|
* If no device is specified, check the CDROM environment variable beforedes2000-12-181-0/+4
| | | | picking the default device.
* mdoc(7) police: document IPv6 options in the SYNOPSIS.ru2000-12-181-1/+1
|
OpenPOWER on IntegriCloud