summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Add my e-mail to copyrightsphantom2001-12-112-2/+2
|
* * Add my e-mail to copyrightsphantom2001-12-1110-52/+57
| | | | * style(9)'ify
* Fix grouping string handlingphantom2001-12-111-1/+4
|
* We support writing to at least one filesystem now.jhb2001-12-111-1/+1
| | | | | | PR: kern/32389 Submitted by: Jonathan Mini <mini@haikugeek.com> Sponsored by: ClickArray, Inc.
* Add support for overwriting the existing contents of a file to the UFSjhb2001-12-111-4/+119
| | | | | | | | | driver in libstand. This specifically does not expand or truncate files since the filesystem may be dirty or inconsistent. PR: kern/32389 Submitted by: Jonathan Mini <mini@haikugeek.com> Sponsored by: ClickArray, Inc.
* Style improvements recommended by Bruce as a follow up to somedwmalone2001-12-101-5/+6
| | | | | | | | of the recent WARNS commits. The idea is: 1) FreeBSD id tags should follow vendor tags. 2) Vendor tags should not be compiled (though copyrights probably should). 3) There should be no blank line between including cdefs and __FBSDIF.
* Add auto-fill-on-delete. When deleting an 'A'uto created partitiondillon2001-12-092-17/+38
| | | | | | | | | | | | | | | | sysinstall will automatically expand the previous partition to take up the freed up space. So you can 'D'elete /home and /usr will get the combined space, or you can 'D'elete /tmp and /var will get the combined space. This gives the user, developer, or lay person a huge amount of flexibility in constructing partitions from an 'A'uto base. It takes only 3 or 4 keystrokes to achieve virtually any combination of having or not having a /tmp and/or /home after doing an 'A'uto create. Change 'A'uto creation of /var/tmp to 'A'uto creation /tmp, which should be less controversial. MFC after: 6 days
* Back out previous commit.des2001-12-091-2/+1
| | | | Requested by: ru
* Don't build with NDEBUG.des2001-12-091-3/+0
| | | | | PR: bin/32615 MFC after: 1 week
* Conditionalize some debugging code that didn't use the DEBUG macro.des2001-12-091-8/+10
| | | | MFC after: 1 week
* Introduce a fetchDebug global. Change the DEBUG macro so it only runs thedes2001-12-093-1/+5
| | | | | | | debugging code if fetchDebug is set. PR: bin/32615 MFC after: 1 week
* Start using .St macro for POSIX.1-2001.ru2001-12-082-4/+3
|
* mdoc(7) police: sort xrefs.ru2001-12-081-5/+5
|
* Prevent infinite loop, when kevent(2) is called wihout eventlist (i.e.sobomax2001-12-081-1/+1
| | | | eventlist == NULL or nevents == 0).
* Get rid of unused anymore file! Alpha works fine with our strtod() now.phantom2001-12-071-2496/+0
|
* Return 'c' back to signed due to potential comparison problemsache2001-12-076-60/+72
| | | | | | Use simpler test for valid ranges Submitted by: bde
* Fix a typo.ru2001-12-071-1/+1
| | | | Submitted by: "Alexey V. Neyman" <alex.neyman@auriga.ru>
* * localeconv() usage is not FLOATING_POINT specific anymore (due to "'" flagphantom2001-12-071-3/+3
| | | | | addition) so move locale.h inclusion out of FLOATING_POINT ifdef's. * add more comments
* Get pam_mod_misc.h from .CURDIR rather than .OBJDIR or /usr/include.des2001-12-071-1/+2
| | | | Sponsored by: DARPA, NAI Labs
* Make strerror and strerror_r use sys_errlist[0] for errnum = 0. Bewes2001-12-072-6/+32
| | | | | | | | | | | more careful about reporting truncation with ERANGE in strerror_r. Set errno to EINVAL for "unknown" errnum in strerror as required by P1003.1-200x Draft June 14, 2001. More carefully document the handling of strerrbuf when errors (ERANGE, EINVAL) are encountered in strerror_r. Reviewed by: bde (ongoing discussion)
* Remove blank line.fenner2001-12-071-1/+0
|
* Now that _pam_init_handlers() works as intended, it seems clear that wedes2001-12-071-1/+1
| | | | | | | do not actually want to define PAM_READ_BOTH_CONFS, so back out previous commit. Sponsored by: DARPA, NAI Labs
* We need pam_client.h from libpamc. This unbreaks worlddes2001-12-061-0/+6
| | | | | Pointed out by: jhay Pointy hat to: des
* New, improved, more Posix-compliant strerror_r implementation,wes2001-12-062-72/+78
| | | | | | | complete with documentation. Reviewed by: mike@ gad@ MFC after: 1 week
* Define PAM_READ_BOTH_CONFS. We can now have both /etc/pam.d anddes2001-12-051-1/+1
| | | | | | /etc/pam.conf. Sponsored by: DARPA, NAI Labs
* Clarify ' ' space issueache2001-12-052-2/+3
|
* Install the correct version of pam_misc.h.des2001-12-051-1/+1
| | | | Sponsored by: DARPA, NAI Labs
* Add dummy functions for all module types. These dummies return PAM_IGNOREdes2001-12-059-6/+542
| | | | | | | rather than PAM_SUCCESS, so you'll get a failure if you list dummies but no real modules for a particular module chain. Sponsored by: DARPA, NAI Labs
* Connect the man page to the build.des2001-12-051-0/+1
| | | | Sponsored by: DARPA, NAI Labs
* Add a pam_self authentication module that succeeds if and only if the localdes2001-12-054-0/+257
| | | | | | and remote user names are the same. Sponsored by: DARPA, NAI Labs
* mdoc(7) police: markup the previous delta.ru2001-12-041-1/+3
|
* Correct some egregious style bugs.des2001-12-041-13/+21
|
* Add a missing error check. This fixes a bug that would cause pwd_mkdb todes2001-12-041-1/+2
| | | | | | | | | dump core if invoked with an input file that looks like a password file but isn't (e.g. /etc/group). PR: 32378 Submitted by: Maxim Konovalov <maxim@macomnet.ru> MFC after: 1 week
* Properly handle being redirected to an FTP URL.des2001-12-041-1/+10
| | | | | | | | | Also fix a couple of not-so-minor bugs: - missing case for HTTP_SEE_OTHER - incorrect definition of HTTP_NEED_PROXY_AUTH PR: 20259 MFC after: 2 weeks
* Add prototype for _ftp_request().des2001-12-041-4/+8
|
* Reorganize to reduce code duplication.des2001-12-041-64/+32
|
* Fix typos getpeerid -> getpeereid.tobez2001-12-021-2/+2
| | | | | PR: docs/32442 Reviewed by: dd
* Use __FBSDID(). Also do a bit of cosmetic #if and header-ordermarkm2001-12-021-1/+4
| | | | cleaning-up.
* Use the merged strtod.c everywhere. This has been tested on alpha andpeter2001-12-021-10/+1
| | | | ia64.
* Remove specific reference to ASCII space (' '), it is true for localizedache2001-12-021-1/+1
| | | | spaces too
* Make it works for non ASCII compatible encodings too.ache2001-12-026-42/+42
| | | | The only assumption left is that 'A'..'Z' 'a'..'z' both are contiguous
* Style fixups.markm2001-12-011-10/+10
| | | | | | | Sort function declarations, includes. Make consistent WRT use of _P() macro (ugh!) Inspired by: bde
* WARNS=2 fixes.markm2001-12-011-16/+11
| | | | Reviewed by: bde (a while back)
* Add support for sysconf(_SC_NPROCESSORS_CONF) and sysconf(_SC_NPROCESSORS_ONLN).jkoshy2001-12-012-0/+12
| | | | | | | | This API is supported in SVR4.0MP, Solaris, Linux, AIX and Tru64 Unix. PR: bin/27489 Submitted by: Arun Sharma <arun@sharma-home.net> Reviewed by: bde (prior version)
* o Stop abusing MD headers with non-MD types.mike2001-12-012-9/+14
| | | | | | | | | | | | | | | o Hide nonstandard functions and types in <netinet/in.h> when _POSIX_SOURCE is defined. o Add some missing types (required by POSIX.1-200x) to <netinet/in.h>. o Restore vendor ID from Rev 1.1 in <netinet/in.h> and make use of new __FBSDID() macro. o Fix some miscellaneous issues in <arpa/inet.h>. o Correct final argument for the inet_ntop() function (POSIX.1-200x). o Get rid of the namespace pollution from <sys/types.h> in <arpa/inet.h>. Reviewed by: fenner Partially submitted by: bde
* Merge the (in)complete ANSIfication work from src/crypto/telnet.markm2001-11-301-8/+0
|
* Invoke the new 'unifdef:' target, and make this lib a complete subsetmarkm2001-11-304-58/+51
| | | | of the crypto (master) code.
* Diff-reduce WRT src/secure/*telnet*/Makefile.markm2001-11-301-5/+18
| | | | | Also, add an "unifdef:" target, so that the telnet sources can be remade from the crypto sources in src/crypto/telnet.
* Merge NetBSD's changes from netbsd_strtod.c in preparation ofphantom2001-11-301-47/+54
| | | | | | | | | removing it from our source tree in order to have one version of strtod() for all arches. netbsd_strtod.c still left in source tree until alpha folks make sure that our native strtod() works as well as NetBSD's one. Reviewed by: peter, bde (some time ago)
* Back out my 'fix', resid is different for strategy than for writealfred2001-11-301-2/+2
|
OpenPOWER on IntegriCloud