diff options
author | Bill Fenner <fenner@FreeBSD.org> | 2000-03-20 04:51:02 +0000 |
---|---|---|
committer | Bill Fenner <fenner@FreeBSD.org> | 2000-03-20 04:51:02 +0000 |
commit | b144d742c6a079cd81373385cde1180b972b3e85 (patch) | |
tree | 1ef846e59ac3022d13ace384aca30b3c1a31ec16 /security/openssh | |
parent | Remove the "version required" line. (diff) |
Fix socklen_t for FreeBSD 3.
PR: ports/17491
Diffstat (limited to 'security/openssh')
-rw-r--r-- | security/openssh/files/patch-ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/openssh/files/patch-ac b/security/openssh/files/patch-ac index bb591d70c5ff..02183d9c5bfe 100644 --- a/security/openssh/files/patch-ac +++ b/security/openssh/files/patch-ac @@ -32,7 +32,7 @@ + * Data types. + */ +typedef u_char sa_family_t; -+typedef u_int32_t socklen_t; ++typedef int socklen_t; + +/* + * bsd-api-new-02a: protocol-independent placeholder for socket addresses |