diff options
author | krion <krion@FreeBSD.org> | 2004-02-22 16:55:02 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-02-22 16:55:02 +0800 |
commit | e4686eb28fdd3d915a0e11a00c82fa163d5ff8bf (patch) | |
tree | 2be890a7d39c9e0ba4529f6de8570757d9d1994a /net/libunp | |
parent | 83a80f6d34cc32b63d0daf3dec81364d3f9feec6 (diff) | |
download | freebsd-ports-gnome-e4686eb28fdd3d915a0e11a00c82fa163d5ff8bf.tar.gz freebsd-ports-gnome-e4686eb28fdd3d915a0e11a00c82fa163d5ff8bf.tar.zst freebsd-ports-gnome-e4686eb28fdd3d915a0e11a00c82fa163d5ff8bf.zip |
- Fix build on AMD64
PR: ports/63201
Submitted by: Hendrik Scholz <hendrik@scholz.net>
Diffstat (limited to 'net/libunp')
-rw-r--r-- | net/libunp/files/patch-libfree:inet_ntop.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/libunp/files/patch-libfree:inet_ntop.c b/net/libunp/files/patch-libfree:inet_ntop.c new file mode 100644 index 000000000000..d65c3b8b3cfa --- /dev/null +++ b/net/libunp/files/patch-libfree:inet_ntop.c @@ -0,0 +1,11 @@ +--- libfree/inet_ntop.c.orig Sat Feb 21 21:25:08 2004 ++++ libfree/inet_ntop.c Sat Feb 21 21:25:21 2004 +@@ -57,7 +57,7 @@ + int af; + const void *src; + char *dst; +- size_t size; ++ socklen_t size; + { + switch (af) { + case AF_INET: |