Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-25 | Kill unused local var, and reorder while here. | Jeremie Courreges-Anglas | |
2015-10-25 | We don't care about lack of source route support for IPv6. | Jeremie Courreges-Anglas | |
ok sthen@ guenther@ mpi@ millert@ | |||
2015-10-25 | Kill IP Source Route support, unusable since 1998. | Jeremie Courreges-Anglas | |
ok sthen@ guenther@ mpi@ millert@ | |||
2015-03-29 | Revert r1.29 "Don't clear ICRNL when editing mode is off, so that character | Stuart Henderson | |
local echo mode don't echo ^M locally" as this causes problems sending CR to some Cisco equipment reported by Ryan Freeman and Fred Crowson. kettenis@ agrees with reverting to fix the regression; we can consider a better diff afterwards but clearly this is a sensitive area. | |||
2015-03-13 | remove the first comma from constructs like ", and," and ", or,": you can use | Jason McIntyre | |
"and" and "or" to join sentence clauses, and you can use commas, but both hinders reading; | |||
2015-02-12 | Don't clear ICRNL when editing mode is off, so that character local echo | Philip Guenther | |
mode don't echo ^M locally analysis and patch from Stanislav Brabec (sbrabec (at) suse.cz) | |||
2015-01-16 | Replace <sys/param.h> with <limits.h> and other less dirty headers where | Theo de Raadt | |
possible. Annotate <sys/param.h> lines with their current reasons. Switch to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc. Change MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where sensible to avoid pulling in the pollution. These are the files confirmed through binary verification. ok guenther, millert, doug (helped with the verification protocol) | |||
2014-11-15 | Reduce instances of `` '' in manuals. | Anthony J. Bentley | |
troff displays these as typographic quotes, but nroff implementations almost always print them literally, which rarely has the intended effect with modern fonts, even in stock xterm. These uses of `` '' can be replaced either with more semantic alternatives or with Dq, which prints typographic quotes in a UTF-8 locale (but will automatically fall back to `` '' in an ASCII locale). improvements and ok schwarze@ | |||
2014-09-09 | Eliminate a pile of casts that were superfluous or wrong, or that were | Philip Guenther | |
the result of bad type choices, particularly (unsigned char *) vs (const char *). Also, use reallocarray(). | |||
2014-08-10 | Add Xr to skey and stty | Philip Guenther | |
2014-07-22 | use ansi style function declarations | Jonathan Gray | |
with suggestions from and ok guenther@ | |||
2014-07-20 | Eliminate silly call() routine that fakes up internal calls as if | Philip Guenther | |
the user typed in undocumented arguments by splitting two functions and doing normal (shock!) C calls. Move extern declarations to externs.h Eliminate another function cast | |||
2014-07-20 | Fix array overflow in command line handling | Philip Guenther | |
2014-07-20 | Mark a slurry of functions as static | Philip Guenther | |
Eliminate two more trivial wrappers | |||
2014-07-20 | use NULL instead of 0 when dealing with pointers | Jonathan Gray | |
ok guenther@ | |||
2014-07-20 | Kill lint comments; mark ExitString() as __dead | Philip Guenther | |
2014-07-20 | Switch from memmove() to memcpy() where appropriate; simplify address | Philip Guenther | |
parsing logic; eliminate an inefficient use of MIN() macro | |||
2014-07-20 | VSUSP and SIGTSTP are required by POSIX | Philip Guenther | |
2014-07-20 | Delete an insane chunk of code for handling broken poll() emulation. | Philip Guenther | |
Pass poll() INFTIM instead of -1 | |||
2014-07-20 | Add prototypes to some function callbacks and fix the type errors that | Philip Guenther | |
this reveals. Make NetTrace static to utilities.c | |||
2014-07-20 | More encryption tentacles: intr_happened and intr_waiting vanish | Philip Guenther | |
Push more includes into .c files Make ring.c only need ring.h | |||
2014-07-20 | Eliminate trivial wrappers TerminalWrite() and TerminalRead() | Philip Guenther | |
Replace TerminalFlushOutput() with tcflush(). Replace TerminalAutoFlush() with check of tty's NOFLSH flag as documented in the manpage. Push <netdb.h> into .c files | |||
2014-07-20 | Don't depend on <sys/param.h> for MAXPATHLEN | Philip Guenther | |
2014-07-20 | Correctly cast to unsigned char for ctype functions/macros | Philip Guenther | |
Push <ctype.h> and <unistd.h> into the .c files | |||
2014-07-20 | ring_init() can't fail | Philip Guenther | |
KNF ring.h | |||
2014-07-20 | -8 is the default | Philip Guenther | |
2014-07-20 | Don't need -I${.CURDIR} | Philip Guenther | |
2014-07-20 | Simplify #includes, start pushing them into the .c files, eliminate | Philip Guenther | |
extern declarations from .c files that duplicate those in .h files, start marking functions with __dead | |||
2014-07-20 | tweak -W options | Philip Guenther | |
2014-07-20 | Ooops, verbose_encrypt option is gone too. | Philip Guenther | |
Also stop assuming that csh is the only shell with job control | |||
2014-07-20 | The manpage claims the -a option uses getlogin(2), so do so. Also, | Philip Guenther | |
ignore its value if it returns a user that doesn't exit | |||
2014-07-20 | The only authentication info now is the login name | Philip Guenther | |
2014-07-20 | remove a variable called wantencryption. | Theo de Raadt | |
hahahahahahahahahha. OK, I'm done. | |||
2014-07-19 | Flense the telnet code base of unwanted ifdefs: authentication/encryption | Philip Guenther | |
tn3270, sgtty, pre-POSIX and other ancient system support, etc. Brings up to date the manpage with what we support. ok matthieu@ beck@ jmc@ millert@ deraadt@ okan@ | |||
2014-05-09 | my previous attempt to fix the renaming of the inet(3) pages was wrong; | Jason McIntyre | |
this fixes those by referencing the correct page, and cleans up the netintro/ inet entries; all this on the advice (and ok) of guenther! | |||
2014-05-08 | inet(3) -> inet_net(3); | Jason McIntyre | |
2014-04-22 | Remove KERBEROS5 from the Makefiles (except ssh for now, where it is | Reyk Floeter | |
already manually disabled). ok deraadt@ | |||
2014-04-16 | des_cblock -> DES_cblock | Jonathan Gray | |
2014-04-15 | Remove workarounds for ld reaching MAXDSIZ on vax, now that MAXDSIZ is | Miod Vallat | |
more comfortable. Reminded by brad@ | |||
2014-02-26 | Once more, the default routing table id is inherited from the process | Claudio Jeker | |
like for any other process as well. OK by many | |||
2014-01-19 | Usually, you don't want macros in the .Nd line, so remove instances of .Tn | Ingo Schwarze | |
marking up words that are not trademarks (ASCII, I/O, NFS, TCP, TELNET). While here, remove .Tn markup from the same words in the body of these pages, too. | |||
2013-10-26 | Only use setsockopt(..SO_RTABLE..) if the -V flag is given to nc/telnet, | Stuart Henderson | |
same style as traceroute6 (change to int and use -1 as a flag, so rtable 0 can still be used as an explicit parameter). | |||
2013-10-21 | Oups, a little bit overzealous. If we "route -T4 exec telnet foo", then | Peter Hessler | |
make sure telnet runs in rdomain 4 as expected. Same for nc. | |||
2013-10-21 | Allow a user to switch to rdomain zero | Peter Hessler | |
2013-08-06 | Switch vax to gcc 3.3.6. | Miod Vallat | |
2013-06-21 | Stop using deprecated Kerberos functions. | Antoine Jacoutot | |
ok millert@ | |||
2013-06-19 | don't link to hx509, pthread and ntlm related libraries | Robert Nagy | |
2013-06-18 | Shuffle library link order to appease the static arch deities. | Miod Vallat | |
2013-06-17 | link to the new kerberos libraries | Robert Nagy | |
2013-04-21 | Convert select() to poll(). OK deraadt@ | Todd C. Miller | |