summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* Sync. usage string and synopsis. Add rcsid.charnier1998-01-054-26/+27
|
* Add -v in usage string. Add rcsid.charnier1998-01-052-12/+12
|
* The default dumplevel is 0.steve1998-01-031-2/+2
| | | | | PR: 5413 Submitted by: NOKUBI Hirotaka <hnokubi@yyy.or.jp>
* Correct -r and -f descriptions.brian1998-01-031-9/+5
| | | | Suggested by: joerg
* Removed /etc/ld.so.conf reference from FILES section (people getalex1998-01-011-3/+1
| | | | | | | confused when they can't find it), but leave the reference to it as being a standard filename (which doesn't imply that it exists). Discussed with: jkh
* Properly drop group privs to open file names specified by the user.imp1997-12-301-1/+15
| | | | | Submitted by: Niall Smart rotel@indigo.ie Obtained from: OpenBSD (rev 1.7 and 1.8)
* Added copyright (taken from natd.c).alex1997-12-301-1/+9
| | | | Approved by: Ari Suutari <ari@suutari.iki.fi>
* Add a "scsi -f /dev/ssc -p" example and xref ssc(4).brian1997-12-291-9/+14
| | | | Make the other examples prettier.
* Mention that the -r flag reprobes the entire bus on which the givenbrian1997-12-291-14/+25
| | | | | device resides and that the -f flag must specify the `whole slice' if it's a disk.
* Fix a few style nits from previous commit.steve1997-12-291-11/+10
| | | | Submitted by: Bruce Evans <bde@zeta.org.au>
* Add missing .Ar.charnier1997-12-291-1/+1
|
* Get md5(1) to use getopt(3). Also some minor -Wall cleaningsteve1997-12-292-33/+50
| | | | | | | while here. PR: 5387 Submitted by: Matthew Hunt <mph@pobox.com>
* Typo/$Id$ police.alex1997-12-272-1/+6
|
* style(9) correctionsimp1997-12-264-8/+12
| | | | Submitted by: bde
* Put the return value of getopt into an int, not a char.alex1997-12-261-5/+4
|
* Be extra paranoid about trusting the length of the data returned byimp1997-12-241-1/+1
| | | | | gethostbyaddr. Submitted by: Julian Assange
* Two fixes:imp1997-12-241-6/+8
| | | | | 1) Correct strncpy usage 2) gethostbyaddr paranoia from Julian Assange
* Minor style nit noticed by bde.imp1997-12-241-2/+2
|
* Be extra paranoid about trusting the length returned by gethostbyaddr.imp1997-12-241-3/+3
| | | | Submitted by: Julian Assange
* Be extra paranoid about trusting the size of the address returned fromimp1997-12-241-2/+2
| | | | | gethostbyaddr. Submitted by: Julian Assange
* Remove unused include fileseivind1997-12-221-9/+3
| | | | Submitted by: bde
* Typo fix in the message displayed.max1997-12-211-1/+1
|
* Remove unused private header.eivind1997-12-211-2/+1
| | | | Submitted by: max
* Remove unused private include files from slattach.eivind1997-12-211-8/+3
| | | | Submitted by: bde
* Fixed overflow in chkrange(). Some out of bounds block numbers,bde1997-12-213-3/+3
| | | | | | | e.g. -1, were not detected. Use a bulletproof check that doesn't depend on special properties of the args or the limit. PR: 3528
* Fixed style bugs in the printing of statistics after preening. Usebde1997-12-203-45/+48
| | | | | | | | | | | floating point better in the percentage calculation there to avoid overflow when there are more than about 20 million fragments. Start using floating point in the other percentage calculation to avoid overflow when there are more than about 2 million fragments. Fixed printf format strings. Converted sccsid to rcsid.
* Don't attempt to print the statistics for a "clean" preened filesystembde1997-12-203-3/+3
| | | | | | | | | | | when there isn't even a filesystem. Attempting to print them tended to cause SIGSEGV or SIGFPE depending on how far setup() got before it returned 0. This was broken in the previous revision by removing a return statement that the previous case depended on falling into. PR: 4840 (fixed by this commit) PR: 2537 (possibly fixed by Lite2 merge and later changes. setup() does more checking now)
* Fixed some FUD (don't blame current msdosfs for old msdosfs+vfs_bio bugs).bde1997-12-193-24/+51
|
* The ``super scsi'' device is /dev/scc.brian1997-12-191-5/+2
| | | | I'm not sure it's fully functional though !
* Install sysctl in /sbin. It is used in some cases in network_pass1(),bde1997-12-181-0/+4
| | | | before /usr is mounted if /usr has type nfs.
* Fixed DPADD.bde1997-12-161-0/+2
|
* Oops..The default behaviour should be *not* to log all succeededguido1997-12-131-2/+2
| | | | requests. If you want this extra loggin, add the -l option.
* Fix some style bugs.guido1997-12-102-9/+10
| | | | Submitted by: bruce
* natd 1_10 => 1_11brian1997-12-102-61/+70
| | | | | | Cosmetic style changes Use u_short for port values. Submitted by: Ari Suutari <ari@suutari.iki.fi>
* Log all failed mount attempts.guido1997-12-092-9/+59
| | | | | Also add a flag (-l) so mountd will also log all succeeded requests to mountd.
* Reverse my previous change and use htons() on an intbrian1997-12-061-1/+1
| | | | | | | | | | | | | instead of htonl() ! This results in the int a,b,c,d changing to b,a,c,d, but as it's subsequently coerced to a u_short, the ultimate answer is correct. If this isn't fixed properly soon (by the author) I'll have a look at it again. Noted by: eivind & ari@suutari.iki.fi
* Allow ipfw to accept comments and blank lines.julian1997-12-052-1/+7
| | | | This makes ipfw config files a LOT more readable.
* Add mount_devfs(8) to the SEE ALSO section.steve1997-12-012-2/+4
| | | | PR: 5125
* Fix syntax error for the mount_mfs example.obrien1997-11-241-2/+2
| | | | Also update to a more realistic example.
* Add missing argument detected by "-Wformat".jdp1997-11-181-2/+3
|
* Fix missing arguments detected by "-Wformat".jdp1997-11-181-2/+3
|
* Fix two missing arguments detected by "-Wformat".jdp1997-11-181-2/+4
|
* Use htonl() rather than htons().brian1997-11-131-1/+1
|
* Reviewed by: hackers@freebsd.org in generaljulian1997-11-136-6/+44
| | | | | | | | | | | | | Obtained from: Whistle Communications tree Add an option to the way UFS works dependent on the SUID bit of directories This changes makes things a whole lot simpler on systems running as fileservers for PCs and MACS. to enable the new code you must 1/ enable option SUIDDIR on the kernel. 2/ mount the filesystem with option suiddir. hopefully this makes it difficult enough for people to do this accidentally. see the new chmod(2) man page for detailed info.
* Fix a misleading comment.steve1997-10-271-2/+2
| | | | | PR: bin/4861 Submitted by: Alex <garbanzo@hooked.net>
* use += on cflagsjmg1997-10-263-6/+6
| | | | Submitted-by: Steve Price <sprice@hiwaay.net>
* Make this part of the 'krb' distribution if it is being built as themarkm1997-10-241-0/+1
| | | | Kerberised version.
* Make this part of the 'krb' distribution.markm1997-10-241-0/+1
|
* fix mispelling of kldjmg1997-10-241-2/+2
|
* a few code style changes:jmg1997-10-216-54/+57
| | | | | | | | | | | | | o start function names in column 1 o sort order of flags in getopt and switch o don't try to reference progname o unspam some changes introduced by a 2.2.1-R build box instead of a -current build box doc changes: o document when these commands first appeared o put email address in angle brakets o minor mdoc clean up
OpenPOWER on IntegriCloud