summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Go back to sigaction again now that Peter has found the problem.jkh1996-08-161-3/+3
| | | | | Mine was just a "let's move on" kinda fix, Peter's does it right. :) Submitted-by: peter
* Switch from using sigaction to signal.jkh1996-08-151-8/+5
|
* Don't claim to be POSIX compliant, since our alarm function isn't.mpp1996-08-151-5/+5
|
* Make libncurses catch SIGWINCH and update the values for LINES and COLS.jkh1996-08-151-0/+15
| | | | | | | I was perplexed when an example I'd written to show the values for these variables changing as an xterm window was resized didn't work, and looking into it I see that size tracking for LINES and COLS seems to be one SVR4 enhancement which didn't come across with libncurses.
* NCARGS is defined as 65536 in the released system, not 20480.mpp1996-08-152-2/+2
|
* Correct a cuple of improperly formatted xrefs.mpp1996-08-152-2/+2
|
* Add something so that you can solve the puzzle automatically by pressingjkh1996-08-151-1/+10
| | | | | `a' (I'm using this code as a test for something else, and just happened to add this in the process :).
* Add Idache1996-08-141-0/+2
|
* Fix nasty bracketing/precedence bug. Every time something read (andpeter1996-08-131-2/+2
| | | | | | | | | refilled) a file that was either line- or un-buffered, all files were flushed. According to the code comment, the flush (according to ANSI) is supposed to happen on write + line buffered output files, not _all_ files. Obtained from: OpenBSD / Theo de Raadt, possibly from proven@cygnus.com
* Back out fallback approximation changes, they are not so right to liveache1996-08-133-40/+15
|
* Add collate_range_cmpache1996-08-131-1/+2
|
* Back out minor bumping per Peter suggestionache1996-08-131-1/+1
|
* simplify/speedup/extendache1996-08-131-18/+22
|
* Bump minor number - new function addedache1996-08-131-1/+1
|
* Remove old version hooksache1996-08-122-12/+2
|
* Convert to newly aded collate compare functionache1996-08-122-5/+6
|
* Convert to newly aded collate compare functionache1996-08-123-10/+10
|
* There is so many places where range comparation (using collate)ache1996-08-121-9/+20
| | | | | needed (much more than I think initially), so I forced to add new user-visible non-standard function to libc.
* clear sockaddr_in's on stack before usepeter1996-08-121-26/+28
| | | | | | | | | set sin_len close one ftp port bounce attack have rresvport() use bindresvport() rather than duplicate the code, rresvport() is a superset of bindresvport(). Obtained from: OpenBSD / Jason Downs / Theo de Raadt, minor tweaks by me.
* Use the more robust and more efficient reserved port allocation mechanismpeter1996-08-121-21/+45
| | | | | | now built into bind(2). Obtained from: OpenBSD / Jason Downs / Theo de Raadt
* clear various struct sockaddr_in's on stack, set sin_len.peter1996-08-127-7/+17
| | | | (Noticed when comparing to OpenBSD source)
* Use collate info for alpha character rangesache1996-08-122-9/+14
| | | | 8bit cleanup
* Use collate for alpha character rangesache1996-08-121-1/+4
|
* Remove static collcmp, use new internal function nowache1996-08-121-37/+4
|
* Remove static collcmp, ise new internal function nowache1996-08-121-35/+3
|
* Add internal function __collcmp once instead of adding it staticallyache1996-08-123-2/+65
| | | | to many places in the libc
* Use collate for alpha character rangesache1996-08-121-1/+35
|
* 8bit cleaness (ctype) fixesache1996-08-116-16/+18
|
* Use collate data for national alpha character ranges like [a-z]ache1996-08-111-4/+45
|
* Short value is better for hash due to easy overflow in 8bit charactersache1996-08-111-1/+1
|
* Use locale for character classes instead of hardcoded valuesache1996-08-114-37/+89
| | | | Misc 8bit cleanup
* Yeesh! I shouldn't have looked. Fix a whole bunch more. Prayjkh1996-08-101-7/+17
| | | | for ncurses to replace this soon.
* Fix an exceedingly confusing typo.jkh1996-08-101-1/+1
|
* Remove some hardcode *roff font change escape codes frommpp1996-08-062-4/+4
| | | | | | | | | | this man page to prevent half of it from coming out with underlines. This man page needs to be gone over to fully convert it to mdoc format. This closes PR#1440. Submitted by: Jens Schweikhardt <schweikhardt@rus.uni-stuttgart.de>
* Correct the paramter type of the second argument to fgets.mpp1996-08-061-1/+1
| | | | Obtained from: NetBSD-bugs mailing list
* 1. Add verbose flag to ftp_login()jkh1996-08-035-306/+16
| | | | | | 2. Remove pkg_* support - tcl7.5's channel interface has rendered this almost entirely unsupportable (at least in the way it currently stands). Submitted-By: jmz & jkh
* Document that the relevant clock ticks are for the statistics clockbde1996-07-301-0/+3
| | | | and that the statistics clock has a frequency of sysconf(_SC_CLK_TCK).
* Document that clock ticks are for the profiling clock and that thebde1996-07-301-2/+4
| | | | clock frequency is stored in the gmon header.
* Fixed description of _SC_CLK_TCK. Both the clock and the unitsbde1996-07-301-1/+1
| | | | were wrong.
* Fixed comment about ru_maxrss. This field isn't an integral.bde1996-07-301-1/+1
|
* Fix some of the problems that bde pointed out to me some time ago.peter1996-07-281-7/+16
| | | | | | - buffer expansions were not working right due to a return code botch. - signed types instead of size_t's meant somebody else went and put casts in, I've changed the types to what they should have been.
* Refer to the ASCII character 000 by its proper name, `NUL', and notwollman1996-07-251-11/+12
| | | | | `NULL' (which should only be used in reference to null pointers). Also fix a cross-reference.
* Finish rename of KERN_DOMAINNAME to KERN_NISDOMAINNAME.wollman1996-07-252-4/+4
| | | | Suggested by: Keith Bostic
* Fix a memory leak in MD[245]End()phk1996-07-241-9/+8
| | | | | Submitted by: Ikuo Nakagawa <ikuo@isl.intec.co.jp> PR: misc/1424
* Bring in fixes to db 1.85 from NetBSD. These fixes have been documented aspst1996-07-213-18/+39
| | | | | being sent back to Bostic by the NetBSD crew. Obtained from: NetBSD-current
* Document madvise(2) as it is in FreeBSD.dyson1996-07-201-11/+40
|
* The previous change to alarm.3 to improve the wordingmpp1996-07-191-19/+24
| | | | | | | | was still somewhat confusing and poorly worded. So I took the alarm.3 man page from NetBSD, which looked much better all around. Obtained from: NetBSD
* Revert to old version of strftime.c; the new one doesn't work right.wollman1996-07-191-110/+78
|
* the previous text was absurd, and wrongadam1996-07-191-2/+2
|
* Merge the recently-imported tzcode96h distribution (libc portion). Thewollman1996-07-186-193/+254
| | | | | | part that does zic(8)/zdump(8) is still yet to be imported (but the old zic and zdump will work just fine with these header files and the data format has not changed).
OpenPOWER on IntegriCloud