summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2001-11-14errno saving wrapping in a signal handlerTheo de Raadt
2001-11-14get rid of signal raceTheo de Raadt
2001-11-14o Don't accept URLs with user:pass@ and an extra unencoded @.Heikki Korpela
@ should be encoded as %40 for passwords and usernames. @ in the pathname portion of the URL is ok. o decode usernames and passwords as per FTP URL specification. spotted by krw@, input from krw@ and fgs@ millert@ ok
2001-11-13enter 3.0.1Markus Friedl
2001-11-12enable authorized_keys2 again. tested by fries@Markus Friedl
2001-11-12upgrade .su railways another hundred years; dfa@ okMichael Shalayeff
2001-11-12fix krb5 authorization check. found by <jhawk@MIT.EDU>. from art@, deraadt@ okDug Song
2001-11-11make AuthorizedKeysFile2 fallback to AuthorizedKeysFile if ↵Markus Friedl
AuthorizedKeysFile is specified.
2001-11-11Fixed version... don't see how this could work on i386, since it didn'tMarc Espie
initialize create in main.c.
2001-11-11undo changes that crash on (at least) the alphaTheo de Raadt
2001-11-11Add 'S' to interactive mode to toggle the display of systemFederico G. Schwindt
processes; From NetBSD. millert@ ok.
2001-11-11Redo LstInit as a macro: smaller and faster code in all cases, zeroing twoMarc Espie
pointers is simpler than calling a function. Recognize purely static lst headers, which don't really need any initialization. ok miod@
2001-11-10remove extra debug()Markus Friedl
2001-11-10KNF (unexpand)Markus Friedl
2001-11-10cleanup libwrap support (remove bogus comment, bogus close(), add debug, etc).Markus Friedl
2001-11-10Additional vax magic to cover bins with new MID and 4k page size.Hugh Graham
Also to get Theo monkey off my back.
2001-11-09remove extra trailing dot from log message; pilot@naughty.monkey.orgMarkus Friedl
2001-11-09don't memset too much memory, ok millert@Markus Friedl
original patch from jlk@kamens.brookline.ma.us via nalin@redhat.com
2001-11-09Since all our arches have /dev/ksyms, replace rigid mentions of the kernelMiod Vallat
being /bsd with more correct terms, and remove /bsd and /dev/kmem from the FILES section if they were there.
2001-11-08don't print ROOT in CAPS for the authentication messages, i.e.Markus Friedl
Accepted publickey for ROOT from 127.0.0.1 port 42734 ssh2 becomes Accepted publickey for root from 127.0.0.1 port 42734 ssh2
2001-11-08mention setuid root requirements; noted by cnorris@csc.UVic.ca; ok stevesk@Markus Friedl
2001-11-08don't strdup too much data; from gotoh@taiyo.co.jp; ok millert.Markus Friedl
2001-11-07crank c->path to 256 so they can hold a full hostname; dwd@bell-labs.comMarkus Friedl
2001-11-07unused includesMarkus Friedl
2001-11-07s/Keepalive/KeepAlive/; from openbsd@davidkrause.comMarkus Friedl
2001-11-07missing free and sync dss/rsa code.Markus Friedl
2001-11-07ssh_rsa_sign/verify: SSH_BUG_SIGBLOB not supportedMarkus Friedl
2001-11-07rpcgen is not nearly KNF, but it now generates close to KNF codeTheo de Raadt
2001-11-07pad using the padding field from the ssh2 packet instead of sendingMarkus Friedl
extra ignore messages. tested against several other ssh servers.
2001-11-07more is no more. less has been used as more for more or less most of theArtur Grabowski
time OpenBSD has existed, so there is no point in keeping this code here anymore.
2001-11-07fix signal raceTheo de Raadt
2001-11-07When mixing the -l and -i flags sort on each individual user'sTodd C. Miller
idle time, not the minimum idle tiem of all users on the host. This makes the -i option much more useful...
2001-11-06change a stat() to lstat()Todd C. Miller
2001-11-06implement missing sorting optionsTodd C. Miller
2001-11-06New vm includes.Artur Grabowski
2001-11-06add pablo, born pau casals. 'i owe nearly all my talent at music to the ↵Michael Shalayeff
influence of my father'
2001-11-06Must zero out timeout by hand now that it is no longer global.Todd C. Miller
2001-11-06Restore asyncronous RPC code now that I found the uninitialized variableTodd C. Miller
that was causing problem.
2001-11-05Add more sanity checks of path data in the vi recovery file; potential ↵Todd C. Miller
problems pointed out by lumpy@the.whole.net
2001-11-05make sure files are MAXPATHLEN sized; ianm@cit.uws.edu.auTheo de Raadt
2001-11-05some syslog_r uses in signal handlersTheo de Raadt
2001-11-05use _exit in signal handlerTheo de Raadt
2001-11-05mark a zone of signal racesTheo de Raadt
2001-11-03Telnet client shouldn't say it does Kerberos unless there actually existsHans Insulander
a krb4 or krb5 ticket file. ok art@
2001-11-02replace fprintf(stderr)/exit w/ err/warnMichael Shalayeff
2001-11-02Change 2 Exit() -> exit()Todd C. Miller
Avoid stdio in Exit() and call _exit() if we are a signal handler. We no longer print the signal number but the user can just check the exit value for that.
2001-11-02Revert to clnt_broadcast() method until an alignment problem with theTodd C. Miller
asyncronous rpc code in the previous commit is fixed.
2001-11-02avoid stdio in signal handlerTheo de Raadt
2001-11-02use _exit() in signal handlerTheo de Raadt
2001-11-01Major overhaul.Todd C. Miller
Add protocol version 3 support. To avoid doing two separate broadcasts (like the solaris client does) we now do the equivalent of clnt_broadcast() ourselves and send both version 2 and 3 broadcasts. These are staggered such that under normal circumstances the version 3 reply will be received before the version 2 reply (which is what we want). Version 3 support is important now that we have long user and host names in utmp. Avoid potential duplicates on multihomed machines by storing all the addresses we get back from gethostbyaddr(), not just a single address. Reduce the timeout from 1 minute to 30 seconds which is closer to what Solaris uses and is generally more useful. Check window width and take this into account when formatting lines in -l mode.