summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2003-05-14Remove krb4 support.Magnus Holmberg
2003-05-14Remove krb4 support.Magnus Holmberg
2003-05-14Removed krb4 support.Magnus Holmberg
2003-05-14Better wording, partly related to recent vis(3) change.Paul Janzen
2003-05-14implement kerberos over ssh2 ("kerberos-2@ssh.com"); tested with jakob@Markus Friedl
server interops with commercial client; ok jakob@ djm@
2003-05-14Get rid of libtelnet, it is compiled into the tree programsHans Insulander
(telnetd, telnet and tn3270) that use them instead. This gets rid of a really hairy dependency between telnet and libtelnet. ok millert@
2003-05-14 o Sync w/ freerdist 0.92 minus the compress optionTodd C. Miller
o KNF and ANSIfy the function headers Sparse file support is currently a no-op since it didn't work. Proper sparse file support will be added later.
2003-05-14emphasise the batchmode functionality and make reference to pubkey auth,Damien Miller
both of which are FAQs; ok markus@
2003-05-14ranges for per auth method messagesMarkus Friedl
2003-05-13Use dp->d_namlen instead of strlen(dp->d_name) and check forTodd C. Miller
dp->d_namlen == 0. Shouldn't be possible but the check prevents any possibilty of using an array index of -1.
2003-05-13repair damage after layer fs changesTed Unangst
2003-05-12merge in NetBSD diffs:Paul Janzen
- understand // comments - ignore 'int (*f)();' - accept the GNU __attribute__ keyword. deraadt@ ok
2003-05-12typo: DSA keys are of type ssh-dss; Brian PooleMarkus Friedl
2003-05-12for pubkey authentication try the user keys in the following order:Markus Friedl
1. agent keys that are found in the config file 2. other agent keys 3. keys that are only listed in the config file this helps when an agent has many keys, where the server might close the connection before the correct key is used. report & ok pb@
2003-05-12Recognize Ogg Vorbis audio files, thanks tedu@Ian Darwin
2003-05-12Move asn1_compile to usr.bin/asn1_compile.Hans Insulander
ok deraadt@ mho@
2003-05-11-I$(.CURDIR) to make it work with obj linksHans Insulander
2003-05-11asn1_compile, made independant from libroken and the rest of theHans Insulander
kerberosV stuff. Suggested by deraadt@
2003-05-11make channel_new() strdup the 'remote_name' (not the caller); ok theoMarkus Friedl
2003-05-11when doing sparse writes, we must write the last byte or the file willTed Unangst
be shortened. problem found by wcobb and naddy. ok millert@
2003-05-11change key_load_public to try to read a public from:Markus Friedl
rsa1 private or rsa1 public and ssh2 keys. this makes ssh-keygen -e fail for ssh1 keys more gracefully for example; report from itojun (netbsd pr 20550).
2003-05-11More.Dale Rahn
2003-05-10Do not let userland access the swapon system call anymore (nothing uses itMiod Vallat
anyway). ok deraadt@ weingart@
2003-05-08Update to 1.6.7p5Todd C. Miller
2003-05-08use NULL to indicate failure in functions that return pointers, not FALSE.Vincent Labrecque
typo in comment from Patrick Latifi (patrick.l@hermes.usherb.ca)
2003-05-08AUTHOR -> AUTHORS in .Sh, as per mdoc template.Jason McIntyre
2003-05-07fix an err() that should be errx()Todd C. Miller
2003-05-07bounds were sizeof(pointer) rather than size of the object; found withTheo de Raadt
anil's gcc bounds checker mod
2003-05-06not compiled, nuke itTodd C. Miller
2003-05-06Whoops, forgot a return statement in last commitTodd C. Miller
2003-05-06use POSIX regexTodd C. Miller
2003-05-06Now that rcmdsh(3) can deal with an rsh command w/ args, deal withTodd C. Miller
-P path elements that have spaces.
2003-05-06Don't call setusercontext() to change uid unless uid == 0; found by mpech@Todd C. Miller
2003-05-06While I'm here sync usage() w/ manual.Mike Pechkin
2003-05-06fix a small memleak on errors. noticed by pat latifi.Vincent Labrecque
ok millert, fgsch
2003-05-06sevenbit() before skeylookup().Mike Pechkin
millert@
2003-05-05document the new -f <mode> command line option.Vincent Labrecque
ok jmc
2003-05-05dont write too much data when disconnecting in biz22, also use sizeofAnil Madhavapeddy
in biz31 for consistency. millert@ ok
2003-05-05add a mail-mode, to do automatic line-wrapping.Vincent Labrecque
(at the same time, change the command line parsing to support a -f <mode> that is slightly different from the one in gnu emacs, we apply it to all buffers created from command line arguments, so you can use "mg -f mail-mode" as your editor. manpage change coming soon) ok henning
2003-05-04the buffer to getcwd(3) should be PATH_MAX in size, not MAX_FNAMEAnil Madhavapeddy
to avoid unnecessary truncation millert@ ok
2003-05-03these files all had >9 arguments to .Nd, causing the name description to beJason McIntyre
truncated. i wrapped them in double quotes to preserve the line. grep inspired by an -mdoc lesson from millert@
2003-05-02Update to conform to Posix 1003.1-2001.Nils Nordman
* what now accepts a -s parameter which causes it to quit searching after finding the first match. * stdin is no longer valid for input, one or more filenames have to be provided. * Backslash is recoqnized as a pattern delimiter. * The exit status reflects the number of mathes found (0 if any matches were found, 1 otherwise). Also replace strncpy -> strlcpy. Mostly a sync with netbsd. Input pjanzen@, vincent@. ok millert@.
2003-05-02o Don't close stdout in interactive mode; mpech@Todd C. Miller
Extra paranoia: o Close keyfile by hand each time in -a mode so we don't leak an fd to sendmail o If any of std{out,in,err} are not open, open /dev/null in their stead. o If stdout is not open and -i was specified, just exit since there is nowhere to print the info. Thanks for mpech@ for his testing and bug finding ;-)
2003-05-01i386 is elf now; pt out by ldcosta@arnet.com.arMichael Shalayeff
2003-05-013.3 has left the building...Michael Shalayeff
2003-04-30strvis -> strnvisVincent Labrecque
ok millert
2003-04-30strvis -> strnvis, and add a place for the NUL byte that was missingVincent Labrecque
ok millert
2003-04-30strvis -> strnvisVincent Labrecque
ok millert
2003-04-30fix invalid .Pf macro usage introduced in previous commitDavid Krause
ok jmc@ mouring@
2003-04-30Add missing period.Todd C. Miller