aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/hesinfo
Commit message (Collapse)AuthorAgeFilesLines
* Fixed the misplaced $FreeBSD$.Ruslan Ermilov2005-02-091-1/+3
| | | | Notes: svn path=/head/; revision=141580
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-3/+3
| | | | Notes: svn path=/head/; revision=131491
* ANSIify function definitions.David Malone2002-09-041-3/+1
| | | | | | | | | | | | Add some constness to avoid some warnings. Remove use register keyword. Deal with missing/unneeded extern/prototypes. Some minor type changes/casts to avoid warnings. Reviewed by: md5 Notes: svn path=/head/; revision=102944
* Remove local prototypes for main().Juli Mallett2002-08-191-2/+0
| | | | Notes: svn path=/head/; revision=102084
* Consistently use FBSDIDDavid E. O'Brien2002-06-301-4/+1
| | | | Notes: svn path=/head/; revision=99112
* Usage style sweep: spell "usage" with a small 'u'.Dag-Erling Smørgrav2002-04-221-2/+1
| | | | | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/. Notes: svn path=/head/; revision=95258
* Use `The .Nm utility'Philippe Charnier2002-04-201-3/+3
| | | | Notes: svn path=/head/; revision=95124
* remove __PWarner Losh2002-03-221-1/+1
| | | | Notes: svn path=/head/; revision=92920
* Remove leaf node WARNS?=2 (that mainly I added). This shouldMark Murray2002-02-081-1/+0
| | | | | | | help the GCC3 transition and CURRENT in general. Notes: svn path=/head/; revision=90415
* Warns cleanup.David Malone2001-12-032-1/+2
| | | | Notes: svn path=/head/; revision=87284
* Remove whitespace at EOL.Dima Dorfman2001-07-151-3/+3
| | | | Notes: svn path=/head/; revision=79755
* man(7) -> mdoc(7).Ruslan Ermilov2001-01-161-165/+135
| | | | Notes: svn path=/head/; revision=71118
* Add nsswitch support. By creating an /etc/nsswitch.conf file, you canJacques Vidrine2000-09-063-0/+347
configure FreeBSD so that various databases such as passwd and group can be looked up using flat files, NIS, or Hesiod. = Hesiod has been added to libc (see hesiod(3)). = A library routine for parsing nsswitch.conf and invoking callback functions as specified has been added to libc (see nsdispatch(3)). = The following C library functions have been modified to use nsdispatch: . getgrent, getgrnam, getgrgid . getpwent, getpwnam, getpwuid . getusershell . getaddrinfo . gethostbyname, gethostbyname2, gethostbyaddr . getnetbyname, getnetbyaddr . getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr = host.conf has been removed from src/etc. rc.network has been modified to warn that host.conf is no longer used at boot time. In addition, if there is a host.conf but no nsswitch.conf, the latter is created at boot time from the former. Obtained from: NetBSD Notes: svn path=/head/; revision=65532