diff options
author | bouyer <bouyer> | 2005-01-30 22:59:50 +0000 |
---|---|---|
committer | bouyer <bouyer> | 2005-01-30 22:59:50 +0000 |
commit | 18e817d2cbf32455d3f72bb229a2fcce19b35938 (patch) | |
tree | 96717eeb7f97e04343eba93d586bc7e88b59137b /net/wget | |
parent | 6feba622440e226df5e123912455ebfb827d5bf1 (diff) | |
download | pkgsrc-18e817d2cbf32455d3f72bb229a2fcce19b35938.tar.gz |
Use uint32_t instead of u_int32_t. Should fix PR pkg/29146.
Diffstat (limited to 'net/wget')
-rw-r--r-- | net/wget/distinfo | 4 | ||||
-rw-r--r-- | net/wget/patches/patch-ac | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net/wget/distinfo b/net/wget/distinfo index 954b403237a..4e774489f66 100644 --- a/net/wget/distinfo +++ b/net/wget/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.22 2005/01/25 20:07:25 bouyer Exp $ +$NetBSD: distinfo,v 1.23 2005/01/30 22:59:50 bouyer Exp $ SHA1 (wget-1.9.1.tar.gz) = 0597a4f47b056e3e60cf7d08c9409d67358e7099 Size (wget-1.9.1.tar.gz) = 1322378 bytes SHA1 (patch-aa) = 6ddfbceb3d66c8bce99695cf5be50b7b91aee7b2 SHA1 (patch-ab) = b00db7f71a3add563121066a3bfd378019d206bf -SHA1 (patch-ac) = 446cdbf75dd863fd07410a93e4230796fd092a47 +SHA1 (patch-ac) = 0bd16e8d364609f9b2d73d91350a8e162a85f9e5 SHA1 (patch-ad) = 7605ad58dfc5e6982a06437d953ec8ceb55c86e7 SHA1 (patch-ag) = d13900b60f52cac6c71f701026e6de8b32f00354 SHA1 (patch-ah) = e31060497c77f87f0ed4cab44e63597654ca0525 diff --git a/net/wget/patches/patch-ac b/net/wget/patches/patch-ac index bed5e0b9f47..1e6396918c2 100644 --- a/net/wget/patches/patch-ac +++ b/net/wget/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.7 2005/01/25 20:07:25 bouyer Exp $ +$NetBSD: patch-ac,v 1.8 2005/01/30 22:59:50 bouyer Exp $ --- src/host.c.orig Sun Oct 26 02:38:25 2003 +++ src/host.c Sun Jan 23 21:23:28 2005 @@ -165,7 +165,7 @@ $NetBSD: patch-ac,v 1.7 2005/01/25 20:07:25 bouyer Exp $ struct address_list *al = NULL; - uint32_t addr_ipv4; ip_address addr; -+ u_int32_t addr4; ++ uint32_t addr4; /* First, try to check whether the address is already a numeric address. */ |