Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed the misplaced $FreeBSD$. | ru | 2005-02-09 | 1 | -1/+3 |
| | |||||
* | Mechanically kill hard sentence breaks. | ru | 2004-07-02 | 1 | -3/+3 |
| | |||||
* | ANSIify function definitions. | dwmalone | 2002-09-04 | 1 | -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 | ||||
* | Remove local prototypes for main(). | jmallett | 2002-08-19 | 1 | -2/+0 |
| | |||||
* | Consistently use FBSDID | obrien | 2002-06-30 | 1 | -4/+1 |
| | |||||
* | Usage style sweep: spell "usage" with a small 'u'. | des | 2002-04-22 | 1 | -2/+1 |
| | | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/. | ||||
* | Use `The .Nm utility' | charnier | 2002-04-20 | 1 | -3/+3 |
| | |||||
* | remove __P | imp | 2002-03-22 | 1 | -1/+1 |
| | |||||
* | Remove leaf node WARNS?=2 (that mainly I added). This should | markm | 2002-02-08 | 1 | -1/+0 |
| | | | | help the GCC3 transition and CURRENT in general. | ||||
* | Warns cleanup. | dwmalone | 2001-12-03 | 2 | -1/+2 |
| | |||||
* | Remove whitespace at EOL. | dd | 2001-07-15 | 1 | -3/+3 |
| | |||||
* | man(7) -> mdoc(7). | ru | 2001-01-16 | 1 | -165/+135 |
| | |||||
* | Add nsswitch support. By creating an /etc/nsswitch.conf file, you can | nectar | 2000-09-06 | 3 | -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 |