summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2001-02-28ipip.allow can also be set to 2, which skips the loopback spoofAngelos D. Keromytis
checking (for single-machine testing purposes).
2001-02-25fix enboldening on idcok and immedok in NAME sectionTodd C. Miller
2001-02-25Missing commas in NAME section. Found by an espie script ;-)Todd C. Miller
2001-02-22Add a caveat about our O_TRUNC paranoia; art@ okAnil Madhavapeddy
2001-02-22Make _nc_get_token() take a "silent" argument and only warn if itTodd C. Miller
is not set. Propagate "silent" flag in _nc_parse_entry() to _nc_get_token(). Set the silent flag when reading termcap files, including $TERMCAP.
2001-02-22Update to ncurses-5.2-20010210:Todd C. Miller
o remove macro callPutChar() from tty_update.c, since this is no longer needed (reported by Philippe Blain). o add a null-pointer check in tic.c to handle the case when the input file is really empty. Modify the next_char() function in comp_scan.c to allow arbitrarily long lines, and incidentally supply a newline to files that do not end in a newline. These changes improve tic's recovery from attempts to read binary files, e.g., its output from the terminfo database (reported by Bernhard Rosenkraenzer). o revert change to c++/demo.cc from 20001209, which changed definition of main() apparently to accommodate cygwin linker, but broke the demo program.
2001-02-21#ifdef out the "older tic versions may treat the description fieldTodd C. Miller
as an alias" warning since it hits people with $TERMCAP set when there is no terminfo file present. A better fix would be to make _nc_get_token() take a quiet flag.
2001-02-21Define struct _machdep_state again for libc_r to compile on mvme88k.Miod Vallat
2001-02-21replace comment with something not so misleading.Brad Smith
2001-02-18fix typoTodd C. Miller
2001-02-17spelling and grammarPaul Janzen
2001-02-17It's not that I mind split infinitives. I just like to save'em for whenPaul Janzen
they're really needed.
2001-02-17Document behaviour with a NULL format string, and try to not split infinitivesPaul Janzen
that don't have to be split.
2001-02-16Rewrite rfc931.c to eliminate problematic setjmp/longjmp and stdio usageBob Beck
on sockets. Adds new documented rfc1413 routine to do client side ident stuff. leaves compatible rfc931() routine in lib which calls new routine, incremenent shlib minor.
2001-02-16style(9) nit in examples, aaron@ oksmart
2001-02-15fix change from previous commit that didn't get the ports correctlyBob Beck
out of sockaddr_inX's for client side ident.
2001-02-13Fix authorizer removal problem.Angelos D. Keromytis
2001-02-13Avoid theoretical potential buffer overflowPaul Janzen
2001-02-12capitalizationAaron Campbell
2001-02-12correct listener side example. from deraadtJun-ichiro itojun Hagino
2001-02-11Some cleanup.Aaron Campbell
2001-02-10Add missing line continuation character. Fixes sparc and powerpc builds.Todd C. Miller
2001-02-10Make sure $RSH is not the empty string.Todd C. Miller
2001-02-10Insert a missing comma.Aaron Campbell
2001-02-09simplify if loops a bit; Reviewed by: beck@Brad Smith
2001-02-08implement upper limit to icmp6 redirects (experimental, turned off)Jun-ichiro itojun Hagino
negative value to {mtudisc,redirect}_{hi,lo}wat will turn off the limitation. sync with kame.
2001-02-07dd ECONNABORTED.Jun-ichiro itojun Hagino
2001-02-07by default, don't bark on inbound ND messages, as outsider may be able toJun-ichiro itojun Hagino
fill up /var with bogus packets. setting net.inet6.icmp6.nd6_debug will re-enable kernel messages on invalid ND packet and other occasions. improve icmp6 stats.
2001-02-05if a build generates the files, a clean should remove them. ok beck@Todd T. Fries
2001-02-05please alphaTheo de Raadt
2001-02-04This is OpenBSD, not 4.2BSDTodd C. Miller
Bring this man page into the current millenium, it looks like little other than cut & paste has been done to this man page since 4.3BSD.
2001-02-04Add RETURN VALUES sectionTodd C. Miller
Max alarm time is 100000000 seconds, not 2147483647 (as enforced by itimerfix() in kern_time.c)
2001-02-04libc_r builds on alpha againTheo de Raadt
2001-02-03Remove even more dead code.Artur Grabowski
2001-02-03oops.Artur Grabowski
2001-02-03Schedule running of __fini in __init, not __start.Artur Grabowski
2001-02-03An OpenBSD tag doesn't hurt.Artur Grabowski
2001-02-03Add an OS note identifying OpenBSD binaries.Artur Grabowski
This appears to be the standard way to do it.
2001-02-03Decruftification.Artur Grabowski
2001-02-03Use crtbegin and crtend from common_elf.Artur Grabowski
2001-02-03Create a common_elf directory with crtbegin and crtend that canArtur Grabowski
be shared between archs.
2001-02-03Don't define ECOFF_COMPAT. We're ELF.Artur Grabowski
2001-02-03Fix the the elf nlist for cases where we can't mmap the headers.Artur Grabowski
This makes /dev/ksyms work (when that code is commited).
2001-02-01MAXLOGNAME defn changedTheo de Raadt
2001-01-31remove old infrastructure which is not used anymore. Ok'd by beck@Brad Smith
2001-01-31move utmp to large format, usernames to 32 chars; downsjTheo de Raadt
2001-01-31deconfuse include path. (XXX - this for my future hacks).Artur Grabowski
2001-01-27Stubs for vax. (build at least)Hugh Graham
2001-01-26Use correct interpretersNiklas Hallqvist
2001-01-26SHA1 is a big endian algorithm but RFC2289 mandates that results beTodd C. Miller
stored in little endian form (like MD4/MD5). So, instead of having SHA1Final copy the result buffer, we do it ourselves with a loop stolen from RFC2289, Appendix A. Closes PR1650.