| Age | Commit message (Expand) | Author | Files | Lines |
| 2020-01-16 | Usually, -width Fl (which is 10n) is too wide and hence ugly. |  schwarze | 1 | -6/+6 |
| 2019-07-11 | I visited telnet to find and fix some monster bug, and within 20 minutes |  deraadt | 1 | -2/+1 |
| 2019-07-11 | on 12-Mar-98 when art replaced two sprintf calls with snprintf to avoid |  deraadt | 1 | -3/+3 |
| 2019-06-28 | When system calls indicate an error they return -1, not some arbitrary |  deraadt | 2 | -13/+13 |
| 2018-09-30 | telnet argv parsing overflow; from YangX92 |  deraadt | 1 | -6/+18 |
| 2018-03-16 | improve markup quality in the cases found by the new "--" style message |  schwarze | 1 | -4/+3 |
| 2017-08-22 | Use a boolean variable to remember the quotation level instead of |  bluhm | 1 | -19/+17 |
| 2017-07-19 | A few cleanups. This only needs to operate on systems with SIGWINCH, |  deraadt | 2 | -102/+4 |
| 2017-07-07 | Remove unnecessary #ifdefs in telnet. No binary change. |  fcambus | 3 | -134/+12 |
| 2016-05-03 | telnet should not verify if hostname is a fully qualified domain |  awolk | 1 | -9/+1 |
| 2016-03-16 | More "(<blah> *)0" -> NULL, avoiding any stdarg functions. |  krw | 2 | -4/+4 |
| 2016-01-26 | typos |  mmcc | 1 | -2/+2 |
| 2015-12-23 | Add rpath to telnet's more restrictive pledge; otherwise if the server requests |  sthen | 1 | -2/+2 |
| 2015-12-09 | Remove NULL-checks before free(). ok tb@ |  mmcc | 1 | -9/+5 |
| 2015-12-06 | Use __progname instead of manually handling argv[0]. |  tobias | 1 | -5/+3 |
| 2015-11-29 | telnet: check if fd is a tty before calling tcsetattr(fd, TCSADRAIN) |  semarie | 1 | -3/+4 |
| 2015-11-24 | Don't support repeated connections - avoids pledge problems |  beck | 3 | -3/+10 |
| 2015-11-20 | Replace hardcoded "2" with SHUT_RDWR; from Ricardo Mestre |  jca | 1 | -2/+2 |
| 2015-11-19 | how did the pledge "dns" get forgotten?!?! wow.. |  deraadt | 1 | -2/+2 |
| 2015-11-13 | Ev SHELL no longer relevant; |  jmc | 1 | -2/+1 |
| 2015-11-13 | remove -d from SYNOPSIS; |  jmc | 1 | -2/+2 |
| 2015-11-13 | move pledge(2) after setrtable(2), like in nc(1); |  schwarze | 1 | -6/+6 |
| 2015-11-13 | pledge "stdio rpath wpath getpw inet tty" at startup. After opening |  deraadt | 2 | -2/+13 |
| 2015-11-13 | Use setrtable() for the entire process, rather than doing it for the |  deraadt | 2 | -6/+8 |
| 2015-11-13 | Remove support for the debug command; noone needs setsockopt SO_DEBUG |  deraadt | 4 | -42/+6 |
| 2015-11-13 | Delete tracefile command. Tracefiles can now only be specified at |  deraadt | 2 | -17/+12 |
| 2015-11-13 | remove support for !shell |  deraadt | 2 | -65/+2 |
| 2015-11-13 | remove skey support |  deraadt | 3 | -51/+6 |
| 2015-10-26 | Set low-delay traffic class for IPv6 connections as well |  jca | 1 | -11/+14 |
| 2015-10-25 | Kill unused local var, and reorder while here. |  jca | 1 | -7/+2 |
| 2015-10-25 | We don't care about lack of source route support for IPv6. |  jca | 1 | -4/+2 |
| 2015-10-25 | Kill IP Source Route support, unusable since 1998. |  jca | 1 | -189/+20 |
| 2015-03-29 | Revert r1.29 "Don't clear ICRNL when editing mode is off, so that character |  sthen | 1 | -1/+2 |
| 2015-03-13 | remove the first comma from constructs like ", and," and ", or,": you can use |  jmc | 1 | -4/+4 |
| 2015-02-12 | Don't clear ICRNL when editing mode is off, so that character local echo |  guenther | 1 | -2/+1 |
| 2015-01-16 | Replace <sys/param.h> with <limits.h> and other less dirty headers where |  deraadt | 1 | -3/+4 |
| 2014-11-15 | Reduce instances of `` '' in manuals. |  bentley | 1 | -37/+77 |
| 2014-09-09 | Eliminate a pile of casts that were superfluous or wrong, or that were |  guenther | 5 | -90/+80 |
| 2014-08-10 | Add Xr to skey and stty |  guenther | 1 | -3/+5 |
| 2014-07-22 | use ansi style function declarations |  jsg | 9 | -474/+316 |
| 2014-07-20 | Eliminate silly call() routine that fakes up internal calls as if |  guenther | 5 | -102/+86 |
| 2014-07-20 | Fix array overflow in command line handling |  guenther | 1 | -2/+2 |
| 2014-07-20 | Mark a slurry of functions as static |  guenther | 5 | -96/+75 |
| 2014-07-20 | use NULL instead of 0 when dealing with pointers |  jsg | 4 | -24/+24 |
| 2014-07-20 | Kill lint comments; mark ExitString() as __dead |  guenther | 6 | -40/+14 |
| 2014-07-20 | Switch from memmove() to memcpy() where appropriate; simplify address |  guenther | 3 | -23/+18 |
| 2014-07-20 | VSUSP and SIGTSTP are required by POSIX |  guenther | 4 | -31/+6 |
| 2014-07-20 | Delete an insane chunk of code for handling broken poll() emulation. |  guenther | 2 | -18/+5 |
| 2014-07-20 | Add prototypes to some function callbacks and fix the type errors that |  guenther | 5 | -32/+34 |
| 2014-07-20 | More encryption tentacles: intr_happened and intr_waiting vanish |  guenther | 11 | -33/+39 |