diff options
Diffstat (limited to 'security/openssh/files/patch-ad')
-rw-r--r-- | security/openssh/files/patch-ad | 51 |
1 files changed, 18 insertions, 33 deletions
diff --git a/security/openssh/files/patch-ad b/security/openssh/files/patch-ad index b99d16d2c0d1..fc17693d6e5e 100644 --- a/security/openssh/files/patch-ad +++ b/security/openssh/files/patch-ad @@ -1,35 +1,20 @@ ---- readconf.c.dist Fri Nov 19 23:32:48 1999 -+++ readconf.c Fri Nov 19 23:41:27 1999 -@@ -369,13 +369,8 @@ - goto parse_int; - - case oTISAuthentication: -- cp = strtok(NULL, WHITESPACE); -- if (cp != 0 && (strcmp(cp, "yes") == 0 || strcmp(cp, "true") == 0)) -- fprintf(stderr, -- "%.99s line %d: Warning, TIS is not supported.\n", -- filename, -- linenum); -- break; -+ intptr = &options->tis_authentication; -+ goto parse_flag; +--- /usr/ports/distfiles/OpenSSH-1.2/src/usr.bin/ssh/lib/Makefile Tue Nov 16 17:49:29 1999 ++++ ./lib/Makefile Tue Nov 23 19:21:19 1999 +@@ -5,6 +5,7 @@ + cipher.c compat.c compress.c crc32.c deattack.c fingerprint.c \ + hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \ + rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c ++SRCS+= strlcat.c strlcpy.c - case oCompressionLevel: - intptr = &options->compression_level; -@@ -655,6 +650,7 @@ - options->num_local_forwards = 0; - options->num_remote_forwards = 0; - options->log_level = (LogLevel)-1; -+ options->tis_authentication = -1; - } + NOPROFILE= yes + NOPIC= yes +@@ -13,6 +14,7 @@ + @echo -n - /* Called after processing other sources of option data, this fills those -@@ -727,6 +723,8 @@ - options->user_hostfile = SSH_USER_HOSTFILE; - if (options->log_level == (LogLevel)-1) - options->log_level = SYSLOG_LEVEL_INFO; -+ if (options->tis_authentication == -1) -+ options->tis_authentication = 0; - /* options->proxy_command should not be set by default */ - /* options->user will be set in the main program if appropriate */ - /* options->hostname will be set in the main program if appropriate */ + .include <bsd.own.mk> ++.include "../Makefile.inc" + + .if (${KERBEROS} == "yes") + CFLAGS+= -DKRB4 -I/usr/include/kerberosIV +Only in ./lib: strlcat.c +Only in ./lib: strlcpy.c |