summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* bkgd() family fixesache1994-12-022-4/+11
|
* Implement chage_scroll_region properlyache1994-12-023-18/+36
|
* Upgrade to version 1.8.6ache1994-12-0269-1305/+2222
|
* In _gethostbydnsaddr(), force RES_RECURSE into _res.options. This iswollman1994-12-011-1/+4
| | | | | | incredibly obnoxious, but also makes inverse mappings work when the local resolver is in a cache-only configuration. (Maybe this is actually a bug in BIND?)
* wscrl: implement partial scrolling via al/dlache1994-11-295-165/+196
| | | | | winsdel: implemented via wscrl winsertln/deleteln: implemented as macros via winsdel
* Fix many duplicated attribute setsache1994-11-275-22/+6
|
* Add wrefresh before doing putp when idlokache1994-11-274-0/+8
|
* Make idlok works properly with back color erase.ache1994-11-273-4/+16
|
* Go back to Bruce's fix with a minor change that will allow a NULL stringdg1994-11-251-4/+3
| | | | | | pointer if len is 0. I should have looked at the revision history - I would have found that Bruce already fixed the bug with len=0 over a month ago. Whoever said that the bug was in 2.0 was wrong.
* Fixed bugs related to returning NULL if length is zero.dg1994-11-251-3/+4
|
* Forget to exit alt charset mode, critical for non-cons25rache1994-11-241-0/+2
| | | | terminals wits as/ae
* Make this file more BSD-likeache1994-11-211-10/+3
|
* Fix scroll bug bringed by 'vi <several_small_files>'ache1994-11-211-13/+14
| | | | | and :n command then. :prev bug still exists because it syscons bug itself, I work on it.
* Ooops, change back the LIBDIR macro to the SHLIBDIR macro for the sharedats1994-11-191-2/+2
| | | | libs as told by Bruce. Now it works.
* Makefile:ats1994-11-182-2/+3
| | | | | | | | | | Change the reference for the libtermcap libtermlib link from SHLIBDIR to LIBDIR. SHLIBDIR is undefined in the standard case. termcap.c: Initialize a local variable to zero. Otherwise an erroneous free call can happen and clobber the calling program. Seen with vi and gdb. If you have TERMCAP set with a terminal entry and set TERM with something like huhu, vi and gdb core dumps.
* Remove ${DESTDIR} from link-macros. Already applied behind the scenes.phk1994-11-181-4/+4
|
* Make newscr publicly availableache1994-11-172-2/+1
|
* Added sysarch system call which is used my i386_get/set_ltd.c and is neededdfr1994-11-171-1/+1
| | | | | | | for Wine support. The current snapshot of wine works fine with this. This should go into the beta as the code which it calls in the kernel is already there, and works fine.
* Change rules to not generate term.h on second make dependache1994-11-161-5/+4
|
* Install shared libraries in ${SHLIBDIR} instead of in ${LIBDIR}.bde1994-11-141-4/+4
| | | | Add missing ${DESTDIR}'s.
* Install shared libraries in ${DESTDIR}${SHLIBDIR} instead of inbde1994-11-141-15/+15
| | | | | | | | | | $(DESTDIR)/$(LIBDIR) (I need SHLIBDIR. The / was a bug and the $(...) style was inconsistent.) Install ordinary libraries in ${DESTDIR}${LIBDIR} instead of in $(DESTDIR)/$(LIBDIR). Change remaining $(...) to ${...}.
* Added routines to read the canonical UNIX configuration file. This willphk1994-11-133-4/+267
| | | | | | | | | | | later be applied to a number of programs (inetd for instance) to clean out the bogus code doing the same thing, modulus all the bugs. If you need to read a '#'-is-a-comment-file, please use these routines. I realize that the shlib# should be bumped (for the non-US world: increased by something), but will defer this until something significant happens.
* Fix some bugs with forms that have only text fields.paul1994-11-132-3/+14
| | | | Add an extern form to forms.h for apps to pick up.
* The start of a forms editor library. Currently implements text andpaul1994-11-139-3/+629
| | | | | | input fields. It reads a template file passed to init_forms(char *) and creates a curses based form editor. See the examples directory for a basic demo.
* Remove z_abs. It is already in libm.aljo1994-11-111-1/+1
|
* Add missing z_abs. In BSD tradition this is in libm.a.ljo1994-11-111-0/+7
|
* From: Michael Reifenberger <root@rz-wb.fh-sw.de>jkh1994-11-111-1/+1
| | | | | | | z_abs is missing in libf2c. Could someone please commit the following patch? Submitted by: mr
* Add 57600, 115200 ro baudrate()ache1994-11-101-16/+26
|
* Forget to change = to += in previous commitache1994-11-081-1/+1
|
* Add missing link for shared libtermlibache1994-11-081-0/+4
|
* *** ATTENTION *** YOU MIGHT BE ABOUT TO BE HOSED *** ATTENTION ***phk1994-11-072-156/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This effectively changes the non-DES password algoritm. If you have the "securedist" installed you will have no problems with this. (Though you might want to consider using this password-encryption instead of the DES-based if your system is likely to be hacked) If you are running a -current system without the "securedist" installed: YOU WILL NEED TO CHANGE ALL PASSWORDS !! There is no backwards mode. Suggested procedure is: Update your sources cd /usr/src/lib/libcrypt make clean make all make install passwd root <set roots new password> change password for any other users on the system. This algorithm is expected to be much better than the traditional DES- based algorithm. It uses the MD5 algorithm at what it is best at, as opposed to the DES algorithm at something it isn't good at at all. The algorithm is designed such that it should very hard to shortcut the calculations needed to build a dictionary, and to make partial knowledge (Hmm, his password starts with a 'P'...) useless. Of course if somebody breaks the MD5 algorithm this looses too. The salt is 48 bits (8 char @ base64). The encrypted password is 128 bits. And I am positively delighted to say that it takes 34 msec to crypt() a password on a Pentium/60Mhz, so building a dictionary is not really an option for hackers at the moment.
* Added "const" to the arguments here and there.phk1994-11-077-20/+20
|
* A semicolon was lost.phk1994-11-072-2/+2
|
* From: "gj%pcs.dec.com@inet-gw-1.pa.dec.com" <garyj@rks32.pcs.dec.com>jkh1994-11-072-0/+2
| | | | | | | | | | | Given the right circumstances, a call to kvm_open can result in a core dump. The diff belows fixes this (note that this change is already in the NetBSD code). Could somebody apply this? Gary J. Submitted by: gj
* This curses fix allows to print something in lower right cornerache1994-11-061-22/+63
| | | | if insert_character is available or don't print, if not
* Several fixes for 'back_color_erase' curses problemache1994-11-061-5/+5
|
* Fix curses bug with delete character and standoutache1994-11-061-0/+4
|
* Date: Wed, 26 Oct 1994 15:44:49 -0600nate1994-11-051-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | From: Chris Torek <torek@bsdi.com> Here is a semi-official patch (apply to /usr/src/lib/libc/stdio/fseek.c, rebuild libc, install). The current code fails when the seek: - is optimized, and - is to just past the end of the block currently in the buffer, and - is followed by another seek with no intervening read operation, and - the destination of subsequent seek is within the block left in the buffer (seeking to the beginning of a block does not force a read, so the buffer still contains the previous block) so it is indeed rather obscure. I may have a different `final' fix, as this one `loses' the buffer contents on a seek that goes just past the end of the current block. [Footnote: seeks are optimized only on read-only opens of regular files that are buffered by the file's optimal I/O size. This is what you get with fopen(path, "r") and no call to setvbuf().] Obtained from: [ BSDI mailing list ]
* Add const to termcap prototypes to help libg++ 2.6.1 compiling,ache1994-11-041-7/+7
| | | | this change must not affect other curses pgms
* __386BSD__ -> __FreeBSD__jkh1994-11-041-1/+1
| | | | | | I know that many of these entries are bogus and need to be revisited, but let's get the tree working again for now and then do a pass through looking at all the __FreeBSD__ entries, shall we?
* Fix from Gary Jennejohn - use 'cp' not 'buf' in read call. Oops.dg1994-11-021-1/+1
|
* Clean up beforeinstallpst1994-11-011-6/+3
|
* Add SIGTERM reaction -- cleanupache1994-10-311-0/+1
|
* More verbose diagnostic, if failsache1994-10-311-2/+2
|
* Now COLS/LINES uses window cols/lines, not cols/lines from termcap entryache1994-10-311-2/+2
|
* Finally move DB declaration under _CURSES_PRIVATEache1994-10-283-4/+1
|
* Continue previous fix stillache1994-10-281-1/+1
|
* After some thinking better place to fix appearse curses again, notache1994-10-282-0/+4
| | | | | vi(1). Remove DB from curses.h and still implement it provide this variable for programs that expect it in any case.
* Rename cDB to DB back like old good BSD curses always does,ache1994-10-284-4/+4
| | | | | check ultrix for example. Real place for fix will be vi(1), wait for next commit.
* Missed one reference to the DB variable.phk1994-10-281-1/+1
|
OpenPOWER on IntegriCloud