summaryrefslogtreecommitdiff
path: root/usr.bin/telnet
AgeCommit message (Collapse)Author
2002-03-25Todd Miller pointed this out to me:Hans Insulander
You really want to use 'volatile sig_atomic_t' not just sig_atomic_t for flags set in signal handlers. Without the volatile gcc may stick the value in a register but update the on-stack copy in the signal handler.
2002-03-22Telnet encryption warning messages, taken from kth-krb4-1.1.1.Hans Insulander
(krb4-1.1.1 will be imported after release) Noone bothered to look at this, but I've used this for a couple of weeks, and i really want this to go in before release.
2002-03-05and a -ldesTheo de Raadt
2002-02-17telnet used a P macro instead of __P -- g/c that too.Todd C. Miller
2002-02-16Part one of userland __P removal. Done with a simple regexp with some minor ↵Todd C. Miller
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
2002-02-10spellingTheo de Raadt
2002-02-01strlcpyJun-ichiro itojun Hagino
2001-11-19kill more registersMike Pechkin
millert@ ok
2001-11-03Telnet client shouldn't say it does Kerberos unless there actually existsHans Insulander
a krb4 or krb5 ticket file. ok art@
2001-09-10link k5 before k4 (new binutils is more picky than old ld)Jason Wright
2001-09-04Replace the deprecated BSD sigsetmask/sigblock/sigpause functions with their ↵Todd C. Miller
POSIX counterparts.
2001-09-03repair a bug in 1.23, where "telnetport" was incorrectly set.Jun-ichiro itojun Hagino
From: Pekka Savola <pekkas@netcore.fi>
2001-07-19well, with the most recent reorganization, it now turns out that anyTheo de Raadt
program which links -lkrb5 also must link -lkafs as well! someone please mail hin@ an alpha or a powerpc, so that he can become aware of how binutils ("the other linker we use") works.
2001-07-12first pass at a -Wall cleanupTheo de Raadt
2001-07-09correct type on last arg to execl(); nordin@cse.ogi.eduTheo de Raadt
2001-07-04symmetrical, not symetricalPeter Valchev
2001-06-23Don't lie about Kerberos and encryption.Hans Insulander
Result of a conversation with pjanzen@ ok deraadt@
2001-06-23Update for heimdal-0.3fHans Insulander
2001-06-22Fix krb5 linking.Hans Insulander
My machine can now build statically with krb5 enabled.
2001-05-25KerberosV support from Heimdal.Hans Insulander
2001-04-30don't freeaddrinfo if getaddrinfo fails; ok deraadt@,itojun@Markus Friedl
2001-01-22make sizeof tline doable; bad aaron.Federico G. Schwindt
2001-01-21oflow fix in rev 1.8 was wrong; mjl@netbsd.orgAaron Campbell
2000-11-10seperate -> separate, okay aaron@Niels Provos
2000-11-09Change all option list specifications to ".Bl -tag -width Ds". Most manAaron Campbell
pages just needed their -width parameter tweaked to "Ds", which provides a nice width of 6 constant characters. For consistency more than anything.
2000-11-08Fix a buf oflow, only exposed because a user happened to have a host with aAaron Campbell
resolvable name > 63 characters and specified a port number on the command line; spotted by steve@tightrope.demon.co.uk, who provided a useful traceback.
2000-10-24When calling setupterm() pass in an int* for the error code soTodd C. Miller
it doesn't spew to stderr if the terminal type can't be found. Fix a logic thinko wrt terminaltypeok() -- it should return 0 on failure, not success.
2000-10-10Use curses, not ocurses and thus setupterm() not tgetent(). This meansTodd C. Miller
we no longer need to have a faked up telnet_setupterm(). Remove some unused variables and add missing err.h include in sys_bsd.c
2000-09-03Boring... Add :L modifier to all tweakable variables tests.Marc Espie
Closes PR 1246
2000-08-13recover 1.29 -> 1.30Jun-ichiro itojun Hagino
2000-08-13properly look at error code from getnameinfo(3)Jun-ichiro itojun Hagino
2000-08-13telnet -b broke when getaddrinfo conversion was done,Niklas Hallqvist
bind(2) was done on the dst addr instead of the src.
2000-08-02$HOME paranoia: never use getenv("HOME") w/o checking for NULL and non-zeroTodd C. Miller
2000-04-30If getaddrinfo() fails:Todd C. Miller
o Only call herror() if h_errno != 0 o if error == EAI_SERVICE say "bad port" since the generic error, "service not supported for ai_socktype" is incomprehensible to most users. o Use warnx(), not warn() since this is not a case where errno is likely to be relevant. Ok'd by Theo
2000-04-16- Remove reference to -S option; we don't have gettosbyname() and friends.Aaron Campbell
- Shrink SYNOPSIS a bit.
2000-04-15- For consistency, `super-user' -> `superuser' in all cases.Aaron Campbell
- Some punctuation fixes. - Some `id' -> `ID'.
2000-04-15Mostly punctuation fixes.Aaron Campbell
2000-03-23More pedantic man page formatting insanity, lalalaAaron Campbell
2000-03-11Various cleanups and standardizations.Aaron Campbell
2000-03-04In Unix land we prefer "whitespace" to "white space" or "white-space". AtAaron Campbell
least, this is the impression I get from looking at a lot of Perl docs.
2000-02-05show scopeid on "Trying foo...".Jun-ichiro itojun Hagino
2000-01-29remove #if 0'ed portion (not necessary due to use of getaddrinfo)Jun-ichiro itojun Hagino
1999-12-30avoid memory leak on realloc() failure.Jun-ichiro itojun Hagino
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-15usage cleanupTheo de Raadt
1999-12-11Add a perror() in reporting failure to connect.Angelos D. Keromytis
1999-12-11IPv6/IPv4 dual stack support. uses getaddrinfo() and getnameinfo()Jun-ichiro itojun Hagino
throughout the code so please look at it with care (for auditing). XXX source routing is not available for IPv6 (even before I modify, it was not available for IPv4 anyways)
1999-12-07extra setuid calls go awayTheo de Raadt
1999-12-06oflowTheo de Raadt
1999-10-17More consistent introduction to options.Aaron Campbell