summaryrefslogtreecommitdiff
path: root/security/ssh/patches
diff options
context:
space:
mode:
authorsommerfeld <sommerfeld>1999-09-06 05:30:19 +0000
committersommerfeld <sommerfeld>1999-09-06 05:30:19 +0000
commit3a14b1dcfd64738deab1bc9d663b831fefd61013 (patch)
treec6fcc4c52c4391d4935d93647afbe49dac912ea1 /security/ssh/patches
parent5f6cab601dde7788abaef4c83220252fc69a75de (diff)
downloadpkgsrc-3a14b1dcfd64738deab1bc9d663b831fefd61013.tar.gz
Fix USE_INET6 build:
- revise patch-aq so it doesn't conflict with ipv6 patches. - adjust checksums - set up alternate patch-sum-v6 patchfile used when v6 patches are added.
Diffstat (limited to 'security/ssh/patches')
-rw-r--r--security/ssh/patches/patch-aq25
1 files changed, 11 insertions, 14 deletions
diff --git a/security/ssh/patches/patch-aq b/security/ssh/patches/patch-aq
index 0988e21039c..f2806791d04 100644
--- a/security/ssh/patches/patch-aq
+++ b/security/ssh/patches/patch-aq
@@ -1,7 +1,7 @@
-$NetBSD: patch-aq,v 1.3 1999/08/17 15:24:42 sommerfeld Exp $
+$NetBSD: patch-aq,v 1.4 1999/09/06 05:30:21 sommerfeld Exp $
--- newchannels.c.orig Wed May 12 07:19:27 1999
-+++ newchannels.c Tue Aug 17 10:49:25 1999
++++ newchannels.c Mon Sep 6 01:09:00 1999
@@ -274,7 +274,7 @@
#include "authfd.h"
#include "emulate.h"
@@ -42,23 +42,20 @@ $NetBSD: patch-aq,v 1.3 1999/08/17 15:24:42 sommerfeld Exp $
{
struct request_info req;
struct servent *serv;
-@@ -1919,6 +1921,7 @@
- struct sockaddr_in sin;
- char buf[255], *cp, *remote_host;
- struct hostent *hp;
-+ int on = 1;
-
- /* Get remote channel number. */
- remote_channel = packet_get_int();
-@@ -2110,6 +2113,7 @@
+@@ -2110,7 +2112,11 @@
success:
/* We have successfully obtained a connection to the real X display. */
-+ setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
-
+-
++ {
++ int on = 1;
++ setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
++ }
++
#if defined(O_NONBLOCK) && !defined(O_NONBLOCK_BROKEN)
(void)fcntl(sock, F_SETFL, O_NONBLOCK);
-@@ -2412,6 +2416,10 @@
+ #else /* O_NONBLOCK && !O_NONBLOCK_BROKEN */
+@@ -2412,6 +2418,10 @@
ssh-agent connections on your system */
old_umask = umask(S_IRUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH);