diff options
author | Brian Feldman <green@FreeBSD.org> | 1999-11-24 03:36:23 +0000 |
---|---|---|
committer | Brian Feldman <green@FreeBSD.org> | 1999-11-24 03:36:23 +0000 |
commit | f0ca59b2b5e3ec904210d8c0a010cbd5fe3909b6 (patch) | |
tree | f83627ec33084e9d6b259693d33ee39310cca441 /security/openssh/files/patch-au | |
parent | Upgrade to 0.94, portlint, PREFIX (diff) |
Update the CVS_DATE. This brings in support for TIS authentication,
obsoleting a couple patches (it's the same code, though, except for
additions).
This also brings in KNFization of everything (please hold the cheering
down :) and made me reroll all my patches.
My patches have been almost entirely rewritten. The places are the
same, but the code's rewritten. It fits with the style (KNF) now,
and looks better.
I've also added strlcat.c to the build, which, just like strlcpy.c, is
necessary for compatibility with older libcs. After strlcat() snuck
into the OpenSSH code recently, this would prevent OpenSSH from
building on (e.g.) FreeBSD 3.2. Adding it to ssh/lib/ makes it work
yet again :)
Notes
Notes:
svn path=/head/; revision=23296
Diffstat (limited to '')
-rw-r--r-- | security/openssh/files/patch-au | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/security/openssh/files/patch-au b/security/openssh/files/patch-au deleted file mode 100644 index 45b30014d990..000000000000 --- a/security/openssh/files/patch-au +++ /dev/null @@ -1,13 +0,0 @@ -diff -ru /home/green/ssh/ssh.c ./ssh.c ---- /home/green/ssh/ssh.c Sat Oct 30 03:43:00 1999 -+++ ./ssh.c Mon Nov 8 00:06:40 1999 -@@ -128,6 +128,9 @@ - log("Using rsh. WARNING: Connection will not be encrypted."); - /* Build argument list for rsh. */ - i = 0; -+#ifndef _PATH_RSH -+#define _PATH_RSH "/usr/bin/rsh" -+#endif - args[i++] = _PATH_RSH; - args[i++] = host; /* may have to come after user on some systems */ - if (user) |