Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | NI_WITHSCOPEID cleanup. Neither RFC 2553 nor RFC 3493 defines | ume | 2005-05-13 | 2 | -13/+3 |
| | | | | | NI_WITHSCOPEID, and our getaddrinfo(3) does nothing special for it, now. | ||||
* | Properly spell default in a comment. | trhodes | 2005-04-22 | 1 | -1/+1 |
| | |||||
* | Remove duplicated "bytes". | delphij | 2005-04-10 | 1 | -1/+1 |
| | | | | | Submitted by: Wojciech A. Koszek [dunstan freebsd czest pl] PR: 79747 | ||||
* | Fix grammatical issue. | trhodes | 2005-02-27 | 1 | -4/+4 |
| | | | | Submitted by: ceri | ||||
* | Use ~/.login_conf when discussing a user's local file. | trhodes | 2005-02-26 | 1 | -1/+1 |
| | | | | Suggested by: ru | ||||
* | Reword previous commit to be a bit more correct and provide more information. | trhodes | 2005-02-25 | 1 | -5/+13 |
| | | | | Inspiried by: ru | ||||
* | Make it more obvious that cap_mkdb(1) is required to rebuild the database. | trhodes | 2005-02-23 | 1 | -0/+7 |
| | | | | | PR: 76981 Submitted by: Lowell Gilbert <freebsd-bugs-local@be-well.ilk.org> | ||||
* | Expand *n't contractions. | ru | 2005-02-13 | 3 | -4/+4 |
| | |||||
* | Reflect the reality; only crypt(3) uses /etc/auth.conf | ru | 2005-01-21 | 1 | -1/+1 |
| | | | | for the time being. | ||||
* | Sort sections. | ru | 2005-01-20 | 3 | -10/+10 |
| | |||||
* | Scheduled mdoc(7) sweep. | ru | 2005-01-11 | 1 | -2/+2 |
| | |||||
* | Various markup and spelling fixes. | trhodes | 2004-12-29 | 1 | -2/+2 |
| | | | | | PR: 75574 Submitted by: Nobuyuki Koganemaru <n-kogane@syd.odn.ne.jp> (original version) | ||||
* | Grammar in a comment. | ru | 2004-12-18 | 1 | -1/+1 |
| | |||||
* | Backout manual page updates. | pjd | 2004-09-26 | 1 | -19/+27 |
| | | | | Requested by: ru | ||||
* | Take the lastest fixes from NetBSD. | pjd | 2004-09-25 | 2 | -90/+70 |
| | | | | Obtained from: NetBSD | ||||
* | There is no such manual page in FreeBSD. | pjd | 2004-09-16 | 1 | -2/+0 |
| | |||||
* | Document when this function came into FreeBSD. | obrien | 2004-08-21 | 1 | -1/+3 |
| | |||||
* | Spell FTP correctly - in this case, it is used as the name of the protocol, | roam | 2004-08-06 | 1 | -2/+2 |
| | | | | | | not the program. Also, bump the document date. Reminded by: our resident mdoc guard (ru) | ||||
* | Add Giorgos's description of the ftp-chroot login.conf option. | roam | 2004-08-06 | 1 | -0/+10 |
| | | | | | | Reported by: Bill Moran <wmoran@potentialtech.com> Submitted by: keramida MFC after: 2 weeks | ||||
* | Markup fixes. | ru | 2004-07-07 | 1 | -16/+24 |
| | |||||
* | Eliminate double whitespace. | ru | 2004-07-03 | 1 | -1/+1 |
| | |||||
* | Mechanically kill hard sentence breaks. | ru | 2004-07-02 | 14 | -29/+52 |
| | |||||
* | Humanize_number(3) is a part of libutil. | pjd | 2004-05-25 | 1 | -0/+2 |
| | |||||
* | You want to include libutil.h, not util.h. | trhodes | 2004-05-25 | 1 | -4/+7 |
| | | | | Some minor sentence tweaking. | ||||
* | Add humanize_number(3) to libutil for formating numbers into a human | pjd | 2004-05-24 | 4 | -4/+312 |
| | | | | | | readable form. Obtained from: NetBSD | ||||
* | Don't depend on NULL's expansion being a pointer, cast it before it is passed | stefanf | 2004-05-18 | 1 | -3/+4 |
| | | | | | | to variadic functions. Approved by: das (mentor) | ||||
* | Fix and clarify unparsable sentence. | dds | 2004-05-11 | 1 | -3/+3 |
| | | | | MFC after: 2 weeks | ||||
* | Bring the description for login_getclassbyname in sync with the function's | dds | 2004-05-11 | 2 | -8/+28 |
| | | | | | | | arguments. The function has as a second argument a struct passwd * pointer, not a directory name. MFC after: 2 weeks | ||||
* | Back out the "clean_environment()" function from libutil. | kientzle | 2004-02-29 | 3 | -211/+4 |
| | | | | | | | Further contemplation has convinced me that this was not going to really solve the problem of environment-poisoning without raising serious administrative headaches. There must be a better way... | ||||
* | Add the clean_environment call to libutil.h also. | kientzle | 2004-02-26 | 1 | -0/+2 |
| | | | | MFC after: 2 weeks | ||||
* | Add a clean_environment call to libutil. | kientzle | 2004-02-26 | 3 | -4/+211 |
| | | | | | | | | | | | | | | | | | This function removes all environment variables except the ones listed on a "whitelist." The function accepts two whitelist arguments. If the first is NULL, a built-in default list will be used. This allows callers to get a variety of behaviors: * Default screening: provide NULL for both lists * Custom screening: provide a custom list for the first argument * Modified default screening: provide NULL for first arg, list of additional variables to preserve in the second arg Idea from: Jacques Vidrine MFC after: 2 weeks | ||||
* | Bump the major version on libtuil. libutil now relies on the mac_* | rwatson | 2003-11-12 | 1 | -1/+1 |
| | | | | | | | | symbols exported by newer versions of libc, and so we want applications depending on the newer library code to be required to link against the newer libc. Discussed with: scottl, kris, imp | ||||
* | Remove __NETBSD_SYSCALLS. | tjr | 2003-10-29 | 1 | -6/+0 |
| | |||||
* | (mostly) Clean up some const warnings here. The code takes some liberties | peter | 2003-10-26 | 1 | -8/+9 |
| | | | | | because it is the originator of various const strings and knows that they came from malloc. | ||||
* | ANSIfy, WARNSify, CONSTify. Bit of style(9)-ify. | markm | 2003-10-18 | 17 | -137/+120 |
| | |||||
* | Remove a GCC specifig CFLAG. We should be using WARNS=? for this. | markm | 2003-10-18 | 1 | -1/+1 |
| | | | | | WARNS=? is not added here at this point, because I've not tested it on enough platforms, and I don't want to break builds. | ||||
* | mdoc(7): Properly mark C headers. | ru | 2003-09-10 | 2 | -2/+2 |
| | |||||
* | style.Makefile(5) | obrien | 2003-08-18 | 1 | -1/+1 |
| | |||||
* | Stage 3 of dynamic root support. Make all the libraries needed to run | gordon | 2003-08-17 | 1 | -0/+1 |
| | | | | | | binaries in /bin and /sbin installed in /lib. Only the versioned files reside in /lib, the .so symlink continues to live /usr/lib so the toolchain doesn't need to be modified. | ||||
* | Tidy up. Sort headers. | markm | 2003-06-14 | 13 | -56/+53 |
| | |||||
* | Backout last commit. It is redundant in -CURRENT. | murray | 2003-05-05 | 1 | -5/+1 |
| | | | | Pointed out by: David Schultz | ||||
* | Note that the idletime setting is not enforced. | murray | 2003-05-04 | 1 | -1/+5 |
| | | | | | PR: docs/40952 MFC After: 3 days | ||||
* | Document the login-backoff and login-retries capabilities. | murray | 2003-05-04 | 1 | -0/+5 |
| | | | | | PR: docs/51397 MFC After: 3 days | ||||
* | Add vmemoryuse to the list. | trhodes | 2003-04-26 | 1 | -0/+1 |
| | | | | | PR: 50796 Submitted by: Dmitry Sivachenko <mitya@cavia.pp.ru> | ||||
* | Brucify. | des | 2003-04-10 | 1 | -4/+8 |
| | |||||
* | Correctly detect the case where a password entry was changed while we were | des | 2003-04-09 | 1 | -2/+7 |
| | | | | | | preparing to edit it. PR: bin/50563 | ||||
* | Apply the correct fix for bin/50679: don't mess around with process groups | des | 2003-04-09 | 1 | -13/+19 |
| | | | | | | | or the tty, just block selected signals in the parent like system(3) does. Many thanks to bde for his assistance in finding the correct solution. PR: bin/50679 | ||||
* | Band-aid for the "^C kills the editor" problem. I haven't yet found the | des | 2003-04-08 | 1 | -10/+6 |
| | | | | | | | | proper way to fix this. The way this works is to prepend "exec " to the editor command to eliminate the "shell in the middle" which prevents us from properly reawakening the editor after a SIGTSTP. PR: bin/50679 | ||||
* | The .Fn function | charnier | 2003-03-24 | 12 | -31/+53 |
| | |||||
* | Make pw_edit() use /bin/sh to interpret the EDITOR environment | das | 2003-03-17 | 1 | -2/+12 |
| | | | | | | | variable. PR: 48748 Reviewed by: mike (mentor) |