summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2001-05-04Qick fix for an overflow in C-X C-B.Artur Grabowski
This function needs a lot of work.
2001-05-04handle kvm_nlist() failing, from pr#1798.Eric Jackson
Patch similar to the one submitted by <peterw@documenta.com.au>
2001-05-04channel_new() reallocs channels[], we cannot use Channel *c after callingMarkus Friedl
channel_new(), XXX fix this in the future...
2001-05-04typosKevin Steves
2001-05-04GAPING_SECURITY_HOLE was removed so there is no -e option.Todd C. Miller
Removed from man page and usage; closes PR 1808
2001-05-03Move colon() and cleanhost() to misc.c where I should I have put it inmouring
the first place
2001-05-03remove "\n" from fatal()Kevin Steves
2001-05-03Fix another annoying feature in mg. When I try to use the keypad toArtur Grabowski
escape from I-search (I don't know if it's legal, but it works in emacs) the initial ESC in the sequence is caugth by I-search (which exits), but not the rest of it which ends up written into the buffer. This is extra annoying when we don't have undo. Note that this is better than emacs because the ESC is removed if nothing indicating a multi-char sequence comes within 300 miliseconds. (Try to ESC from I-search in emacs and then press 'x').
2001-05-03Add a delay (in miliseconds) argument to ttwait.Artur Grabowski
2001-05-03exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.auMarkus Friedl
2001-05-03typo in debug() stringKevin Steves
2001-05-03Bump bootstrap stuff from op-make. Mostly from fries@Marc Espie
2001-05-03Minor manpage tweaksMarc Espie
2001-05-03Synch with my current work.Marc Espie
Numerous changes: - generate can build several tables - style cleanup - statistics code - use variable names throughout (struct Name) - recursive variables everywhere - faster parser (pass buffer along instead of allocating multiple copies) - correct parser. Handles comments everywhere, and ; correctly - more string intervals - simplified dir.c, less recursion. - extended for loops - sinclude() - finished removing extra junk from Lst_* - handles ${@D} and friends in a simpler way - cleaned up and modular VarModifiers handling. - recognizes some gnu Makefile usages and errors out about them. Additionally, some extra functionality is defined by FEATURES. The set of functionalities is currently hardcoded to OpenBSD defaults, but this may include support for some NetBSD extensions, like ODE modifiers. Backed by miod@ and millert@, who finally got sick of my endless patches...
2001-05-03old fileMarc Espie
2001-05-03 * Let make_file_list always append a '/' at the end of directories.Artur Grabowski
This makes filename TAB-completion more useful, now you don't need to write that '/' manually. * random cleanups including using snprintf and memcmp where open-coded equivalents were used, waitpid instead of 'while (wait() != pid);', etc.
2001-05-02-h overrides BLOCKSIZE; matt@anzen.comPaul Janzen
2001-05-02Sync with NetBSD. Notable changes:Todd C. Miller
o Add libwrap support to supfilesrv, conditioned by #ifdef LIBWRAP (on by default). <bouyer@netbsd.org> o Renamed '-l' (the 'live' mode) to '-d' and '-l' is now used to enable logging of successfull connections. <bouyer@netbsd.org> o Don't botch varargs: the are not always an array of void * in the stack... Write a separate function to convert a list of function parameters to explain why execv failed. <christos@netbsd.org> o When in compress mode, don't overwrite the destination file directly, write a temp file and use rename when it is done. (From James Mathiesen <james@deshaw.com>) o Rename errno variable to error to avoid collision with errno.h and remove explicit extern of errno (we get it from errno.h) <mycroft@netbsd.org> o Cleanup unsigned char vs. char o Add -u flag, that prevents sup from attempting to restore a and m times on the received files. o Replace the provided read_line function with calls to the fparseln function in libutil. Maintain compatibility on machines without fparseln through the NEED_READ_LINE define. o Rename login() to suplogin() to avoid name collition in util.h o If rmdir() fails, chmod the path to have r/w/x perms and run "rm -rf" o avoid last.temp filename collision by using rel-suffix o When creating directories, make sure you remove previous non-directories before doing so, otherwise sup fails. o Add -q flag to supscan for quiet operation.
2001-05-02fix prompt for ssh-add.Markus Friedl
2001-05-02Put the 'const' back into ssh_askpass() function. Pointed outmouring
by Mark Miller <markm@swoon.net>. OK Markus
2001-05-01Revert stupid buggy optimisation.Marc Espie
Another Murphy's law: complicated code always works right the first time. Stupid dumb details, on the other hand. Of course we can't share both arrays, as we don't know how they will grow, duh !
2001-05-01Remove completely redundant introductory sentences in ENVIRONMENT sections.Aaron Campbell
2001-05-01Use opendir/readdir instead of open/read when making a file list.Artur Grabowski
This makes filename tab-completion work and takes dired a step further.
2001-05-01raise the file name and buffer name sizesArtur Grabowski
2001-05-01Reformat EXAMPLES section.Aaron Campbell
2001-04-30Better hints handling (used for sorting package lists):Marc Espie
- nodes without a hint should be fully transparent. The make_transparent procedure is potentially slow, but in reality, it's very fast. - don't automatically add an order to un-hinted nodes, so that they are truely transparent. Better memory allocation: split the hash of nodes into a single array instead of duplicating the memory requirements. Okay Todd.
2001-04-30ssh-2.0.10 has the weak-key-bug, too.Markus Friedl
2001-04-30allow interop with weaker key generation used by ssh-2.0.x, x < 10Markus Friedl
2001-04-30right value for X_NSELCOLLArtur Grabowski
2001-04-30Ooops! Undo breakage I introduced in 1.48.Artur Grabowski
2001-04-30implement 'ssh -b bind_address' like 'telnet -b'Markus Friedl
2001-04-30don't freeaddrinfo if getaddrinfo fails; ok deraadt@,itojun@Markus Friedl
2001-04-30CLSIZE is 1 on all archs and will go away soon.Artur Grabowski
2001-04-29Zero a buffer prior to passing it to readlink() as readlink()Todd C. Miller
does not append a NUL itself.
2001-04-29spelingTodd C. Miller
2001-04-29labels should precede actual code, not braces; from NetBSDTodd C. Miller
2001-04-29Add a bunch of old revision history comments that we are missing toTodd C. Miller
make diffing easier. No code changes...
2001-04-29include string.h not strings.hTodd C. Miller
2001-04-29more ssh.com-2.0.x bug-compat; from per@appgate.comMarkus Friedl
2001-04-29fix whitespaceMarkus Friedl
2001-04-29Use S_ISXXX macros where possible instead of doing this by handTodd C. Miller
Noticed while diffing against NetBSD version
2001-04-29Add comment chars to (or just remove) bare words after #endif/#else for ANSI.Todd C. Miller
Noticed while diffing against NetBSD version
2001-04-29If errmsg() is passed a negative argument return strerror(errno)Todd C. Miller
Noticed while diffing against NetBSD version
2001-04-24OpenSSH-2.9Markus Friedl
2001-04-23remove debugMarkus Friedl
2001-04-23allow public key for -e, tooMarkus Friedl
2001-04-22document hostbased and other cleanupMarkus Friedl
2001-04-22style, noted by stevesk; sort flags in usageMarkus Friedl
2001-04-22xref draft-ietf-secsh-*Markus Friedl
2001-04-22rename arguments -x -> -e (export key), -X -> -i (import key)Markus Friedl
xref draft-ietf-secsh-publickeyfile-01.txt