summaryrefslogtreecommitdiff
path: root/security/ssh/files/patch-al
blob: 9fd18168138a97d0550aba79030f0e686d59f3ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
*** sshconnect.c.orig	Thu Jan 30 23:00:03 1997
--- sshconnect.c	Thu Jan 30 23:00:04 1997
***************
*** 239,244 ****
--- 239,250 ----
      {
        struct sockaddr_in sin;
        int p;
+ #if defined(__FreeBSD__)  && !defined(SOCKS)
+ 	p = 1023;	/* Compat with old FreeBSD */
+       sock = rresvport(&p);
+       if (sock < 0)
+ 	fatal("rresvport: %.100s", strerror(errno));
+ #else
        for (p = 1023; p > 512; p--)
  	{
  	  sock = socket(AF_INET, SOCK_STREAM, 0);
***************
*** 266,271 ****
--- 272,278 ----
  	    }
  	  fatal("bind: %.100s", strerror(errno));
  	}
+ #endif
        debug("Allocated local port %d.", p);
      }
    else