aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Xref police: ntp.conf(8) -> ntp.conf(5).Maxim Sobolev2003-06-171-1/+1
| | | | Notes: svn path=/head/; revision=116477
* Not particularly pretty hack to generate rules to make .ln filesMark Murray2003-06-161-2/+10
| | | | | | | | | | from .c files. Actually, this is overkill, as the .ln file targets are assumed from .? (any) files. This is not a problem in practice, merely a bit untidy, as the linting rules DTRT. See the sys/conf/* and sys/mk/* files for usage. Notes: svn path=/head/; revision=116450
* MYADDR6 in ppp.link{up,down} should match even when IPCP is enabled.Hajimu UMEMOTO2003-06-161-24/+20
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=116443
* o BATTTIME and BATTPERCENT are 'int' not 'str'.Maxim Konovalov2003-06-161-1/+1
| | | | | | | | | PR: bin/48793 Submitted by: Stefan Farfeleder <stefan@fafoe.dyndns.org> MFC after: 2 week Notes: svn path=/head/; revision=116442
* Fix yppasswdproc_update_master_1_svc() too.Martin Blapp2003-06-151-0/+32
| | | | | | | | | | | | | Only call pw_mkdb if passfile == _PATH_MASTERPASSWD. Otherwise, rename master.passwd to a temp filename, rename the new passwd to master.passwd, and let yppwupdate update passwd as it sees fit. Reviewed by: phk Tested by: genesys Notes: svn path=/head/; revision=116421
* Only call pw_mkdb if passfile == _PATH_MASTERPASSWD.Martin Blapp2003-06-151-9/+47
| | | | | | | | | | | | | Otherwise, rename master.passwd to a temp filename, rename the new passwd to master.passwd, and let yppwupdate update passwd as it sees fit. PR: 52601, 7968 Reviewed by: des Submitted by: Dan Nelson <dnelson@allantgroup.com> Notes: svn path=/head/; revision=116392
* Document changes to default output.Greg Lehey2003-06-151-6/+7
| | | | Notes: svn path=/head/; revision=116389
* Print out the current recording devices in the default printout.Greg Lehey2003-06-151-3/+9
| | | | | | | | | | | Discussed with: cg Break some particularly long lines. Still not enough for: bde. Notes: svn path=/head/; revision=116388
* make rarpd use in_addr_t instead of u_long since this is neccessaryJohn-Mark Gurney2003-06-151-24/+24
| | | | | | | | | on 64bit platforms ok'd by: silence Notes: svn path=/head/; revision=116369
* Remove MAINTAINER= lines in the makefiles for camcontrol, iostat, libcamKenneth D. Merry2003-06-141-2/+0
| | | | | | | | | | | and libdevstat, since the new way of doing things is to just list maintainership in src/MAINTAINERS. Also, remove duplicate entries in src/MAINTAINERS for those utilities. I already had entries for them. Notes: svn path=/head/; revision=116325
* Eliminated two dozens of superfluous cats and two r-cats (sorry, Jordan).Ruslan Ermilov2003-06-131-73/+51
| | | | | | | Suggested by: Dan Nelson Notes: svn path=/head/; revision=116301
* Check the return values of opendir() and unlink() in cleanheaders().Thomas Moestl2003-06-121-2/+4
| | | | | | | If unlink() fails, just print a warning for now. Notes: svn path=/head/; revision=116257
* Add missing header for system_Select() prototypeKris Kennaway2003-06-121-0/+1
| | | | Notes: svn path=/head/; revision=116251
* Minor improvement to some debugging code that is probably used by no oneGarance A Drosehn2003-06-121-4/+15
| | | | | | | | | but me (it's usually #ifdef-ed out). MFC after: 1 week Notes: svn path=/head/; revision=116234
* Remove MAINTAINER= lines. That info is now in /usr/src/MAINTAINERSGarance A Drosehn2003-06-121-3/+0
| | | | Notes: svn path=/head/; revision=116231
* When sanity-checking a variable, it's good to check the correct variable...Garance A Drosehn2003-06-121-1/+1
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=116230
* Remove uneeded cast.David E. O'Brien2003-06-111-1/+1
| | | | Notes: svn path=/head/; revision=116222
* This appears to be WARNS=3 safe.David E. O'Brien2003-06-111-0/+2
| | | | Notes: svn path=/head/; revision=116221
* Best we can do is WARNS=1 due to lex.David E. O'Brien2003-06-111-0/+1
| | | | Notes: svn path=/head/; revision=116220
* Do not refer to the non-existant BDECFLAGS.David E. O'Brien2003-06-112-3/+0
| | | | Notes: svn path=/head/; revision=116219
* There is no need for this makefile to reference BDECFLAGS, particularlyGarance A Drosehn2003-06-111-1/+0
| | | | | | | | | since that is no longer defined in the default system install. MFC after: 1 week Notes: svn path=/head/; revision=116214
* Autosize the property buffer instead of limiting it to 8192, andThomas Moestl2003-06-112-7/+76
| | | | | | | exiting if a property happens to be larger. Notes: svn path=/head/; revision=116212
* Tidy up the manpage.Ruslan Ermilov2003-06-101-22/+27
| | | | | | | Reviewed by: grog Notes: svn path=/head/; revision=116146
* Decode bus_info block.Hidetoshi Shimokawa2003-06-101-3/+12
| | | | Notes: svn path=/head/; revision=116141
* Update the number and size of ports in the Ports Collection.Murray Stokely2003-06-091-2/+2
| | | | Notes: svn path=/head/; revision=116081
* Change incorrect strings.h to more correct string.h to pick upWarner Losh2003-06-092-2/+2
| | | | | | | declarations for strlcpy, strlen, strmp and strcpy. Notes: svn path=/head/; revision=116078
* Include sys/param.h for both modfind and kldloadWarner Losh2003-06-091-2/+5
| | | | | | | | | Include sys/linker.h for kldload Include sys/module.h for modfind sort sys includes Notes: svn path=/head/; revision=116077
* Include stdlib.h for atoi declaration.Warner Losh2003-06-091-0/+3
| | | | | | | Add $FreeBSD$ while I'm here. Notes: svn path=/head/; revision=116076
* Include stdlib.h for atoi declarationWarner Losh2003-06-091-0/+3
| | | | | | | Add $FreeBSD$ while I'm here. Notes: svn path=/head/; revision=116075
* include string.h for memcmp declearationWarner Losh2003-06-091-0/+1
| | | | Notes: svn path=/head/; revision=116074
* Include string.h for strlen declarationWarner Losh2003-06-091-0/+1
| | | | Notes: svn path=/head/; revision=116073
* Include stdlib.h for exit declarationWarner Losh2003-06-091-0/+1
| | | | Notes: svn path=/head/; revision=116072
* Include string.h for strcmp declarationWarner Losh2003-06-091-0/+1
| | | | Notes: svn path=/head/; revision=116071
* Add section number to .XrPhilippe Charnier2003-06-083-3/+3
| | | | Notes: svn path=/head/; revision=116053
* The .Xr utility. Spelling. Put NIS under .TnPhilippe Charnier2003-06-081-11/+19
| | | | Notes: svn path=/head/; revision=116051
* The .Xr utilityPhilippe Charnier2003-06-083-7/+11
| | | | Notes: svn path=/head/; revision=116050
* Add section number to .XrPhilippe Charnier2003-06-082-5/+5
| | | | Notes: svn path=/head/; revision=116049
* Use implicit SRCS list, remove WARNS=0, the code is WARNS=4 clean now,Juli Mallett2003-06-081-2/+1
| | | | | | | which is more than enough. Notes: svn path=/head/; revision=116018
* WARNS cleanup. Constness and shadowing, namely.Juli Mallett2003-06-081-8/+8
| | | | Notes: svn path=/head/; revision=116017
* Fix format string.Juli Mallett2003-06-081-1/+1
| | | | Notes: svn path=/head/; revision=116016
* Add licence.Greg Lehey2003-06-081-1/+26
| | | | | | | | | Complained about by: juli Correct usage() text. Notes: svn path=/head/; revision=116014
* Oops, this is section 8, not 1.Greg Lehey2003-06-081-1/+1
| | | | Notes: svn path=/head/; revision=116012
* Add man page.Greg Lehey2003-06-081-0/+98
| | | | Notes: svn path=/head/; revision=116011
* Include stdlib.h for exit()Warner Losh2003-06-082-0/+2
| | | | Notes: svn path=/head/; revision=116010
* Introducing asf, a helper program for kernel debugging.Greg Lehey2003-06-082-0/+207
| | | | Notes: svn path=/head/; revision=116009
* Use stdlib.h for getopt interface.Warner Losh2003-06-071-2/+0
| | | | Notes: svn path=/head/; revision=115979
* remove unnecessary '?' from getopt stringWarner Losh2003-06-071-1/+1
| | | | Notes: svn path=/head/; revision=115978
* MAXPATHLEN includes trailing NULWarner Losh2003-06-071-1/+1
| | | | Notes: svn path=/head/; revision=115977
* Use safer strlcpy and snprintf interfacesWarner Losh2003-06-071-4/+4
| | | | Notes: svn path=/head/; revision=115976
* Get getopt interface from unistd.hWarner Losh2003-06-072-5/+2
| | | | Notes: svn path=/head/; revision=115975