summaryrefslogtreecommitdiff
path: root/security/ssh/files/patch-al
blob: 4add2482628bd955c56e102666f0d04894cd477f (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
*** sshconnect.c.dist	Thu Jun  6 21:47:06 1996
--- sshconnect.c	Mon Aug 12 13:26:46 1996
***************
*** 235,240 ****
--- 235,245 ----
      {
        struct sockaddr_in sin;
        int p;
+ #if defined(__FreeBSD__)  && !defined(SOCKS)
+       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);
***************
*** 262,267 ****
--- 267,273 ----
  	    }
  	  fatal("bind: %.100s", strerror(errno));
  	}
+ #endif
        debug("Allocated local port %d.", p);
      }
    else