summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2000-01-05When converting from terminfo to termcap, if we run out of space, nukeTodd C. Miller
acs_chars with extreme prejudice since it is usually quite long. This prevents tic from pruning some otherwise useful capabilities unless it really needs the space.
2000-01-05Close PR-1021. make unix or vms `special' macros that expand toMarc Espie
themselves, with the proper quotes added. Matches gnu-m4, not Solaris nor FreeBSD... better for robustness, as it makes for more transparent expansions.
2000-01-05IPv6 support. commands under "netstat" are all IPv6-aware.Jun-ichiro itojun Hagino
const checks in netstat.c.
2000-01-05better error messageMarkus Friedl
2000-01-05Y2K fix. at(1) would die with 'garbled time' when assign_date() was passedTodd C. Miller
a year > 99. This change fixes the conversion of 2-digit years into tm_year format.
2000-01-05clarify; suggestions from austin@canuck.comPaul Janzen
2000-01-05s/input histogram/input packet/histogram/Jun-ichiro itojun Hagino
suggested by: deraadt
2000-01-04fix file:// URL support; broken by KAME supportTheo de Raadt
2000-01-04document -4, -6, and 'ssh -L 2022/::1/22'Markus Friedl
2000-01-04allow auth-kerberos for IPv4 onlyMarkus Friedl
2000-01-04more hints (hints.ai_socktype=SOCK_STREAM) for getaddrinfo, from itojun@Markus Friedl
2000-01-04'ssh @host' is illegal (null user name), from karsten@gedankenpolizei.deMarkus Friedl
2000-01-04listen on _all_ interfaces for X11-Fwd (hints.ai_flags = AI_PASSIVE)Markus Friedl
2000-01-04ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new features:Markus Friedl
sshd allows multiple ListenAddress and Port options. note that libwrap is not IPv6-ready. (based on patches from fujiwara@rcac.tdi.co.jp)
2000-01-04ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new features:Markus Friedl
sshd allows multiple ListenAddress and Port options. note that libwrap is not IPv6-ready. (based on patches from <kick@kyoto.wide.ad.jp> and fujiwara@rcac.tdi.co.jp)
2000-01-03add missing stat items in ip section.Jun-ichiro itojun Hagino
2000-01-03.Sh "SEE ALSO" -> .Sh SEE ALSO; pjanzen@Aaron Campbell
2000-01-02cleanup_exit() for SIGTERM/SIGHUP, too. from fgsch@ and dgaudet@arctic.orgMarkus Friedl
2000-01-02update to ncurses-5.0-20000101Todd C. Miller
2000-01-02More bugs... fixes for most pending.Marc Espie
make needs quite a lot more of cleaning up yet.
2000-01-02compare correct version for 1.3 compat modeMarkus Friedl
1999-12-30fix netstat -ss; some zeroed counters were displayedTheo de Raadt
1999-12-30dont strip off international characters; fixes pr/1020Niels Provos
1999-12-30avoid memory leak on realloc() failure.Jun-ichiro itojun Hagino
1999-12-30enable KAME scopeid hack (print link-local addresses with scope identifierJun-ichiro itojun Hagino
like "fe80::1@de0").
1999-12-30login already decleared in util.hEric Jackson
1999-12-29check for NULL 1stMarkus Friedl
1999-12-28Add necessary include files.Angelos D. Keromytis
1999-12-27check format string for packet_disconnect and packet_send_debug, tooMarkus Friedl
1999-12-27use packet_get_maxsize for channels. consistence.Markus Friedl
1999-12-26For loops are no longer that bad.Marc Espie
However, I found some more oddities while going through the scanner...
1999-12-25remove ref to .ssh/random_seed, mention .ssh/environment in .Sh FILES, tooMarkus Friedl
1999-12-23no need for obj dir at all; millert@ okMichael Shalayeff
1999-12-22Add yet another case when user matching is disabled.Jason Downs
1999-12-21Recursive definitions are not the real problem.Marc Espie
Trying to expand them is. So flag obvious recursive definitions for later, and give an error only if we expand them. (Some gnu-m4 files, including autoconf, do define some macros with themselves as the replacement text, for use in test-if-set patterns) Since type is no longer MACRTYPE, those macros end up in builtins... but this is not a problem, since expanding them is an error.
1999-12-21Use MAP_PRIVATE for mmap() flags instead of 0. With UVM this defaultsTodd C. Miller
to MAP_PRIVATE anyway but we want to avoid the kernel complaining...
1999-12-20it looks perror("") has no effect in most cases.Jun-ichiro itojun Hagino
use strerror(errno) and format it on our own.
1999-12-20say "REMOTE HOST IDENTIFICATION HAS CHANGED"Markus Friedl
1999-12-20Oops, forgot ports/protocol numbers.Angelos D. Keromytis
1999-12-20Correctly print IPv6 addresses in IPsec flows.Angelos D. Keromytis
1999-12-19Rearrange Lst_Find interface to conform better with other functions.Marc Espie
1999-12-18Nothing ever checks ReturnStatus on Lst_Insert, Lst_Append, Lst_AtFront,Marc Espie
Lst_AtEnd, Lst_Concat, Lst_Remove, Lst_Replace. Don't bother returning one.
1999-12-18Lst_DeQueue already checks for empty lists.Marc Espie
1999-12-18NIL, NILGNODE, etc, are only glorified NULL.Marc Espie
Get rid of them. Get rid of list.h, nothing uses it anyway.
1999-12-18make does not use circular lists, get rid of the extra weight.Marc Espie
1999-12-17grammar; one instance found by NetBSDPaul Janzen
1999-12-16Bugfix: execvp might fail for many reasons.Marc Espie
Perform an explicit ENOENT check to keep the same error message for known cases.
1999-12-16Var_Subst is actually two distinct functions folded into one:Marc Espie
split the function specific to for.c out, and give them more sensible arguments at the same time. This makes .for loop handling more efficient, as we have some heuristic to evaluate the size of the buffer needed...
1999-12-16remaining part of the previous patch... patch got confused somehow.Marc Espie
1999-12-16for.c becomes sane.Marc Espie
- split For_Eval into For_Eval (first line of loop) / For_Accumulate (remaining lines). - encapsulate state into a For structure, instead of brain damaged static variables that need copy. Very minor performance hit, specifically, For structure is allocated with malloc/free, instead of playing tricks with static/auto variables.