diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-12-27 07:51:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-12-27 07:51:34 +0100 |
commit | 92d7f6522617c947d635680d045f12a4ef77bcb4 (patch) | |
tree | c20dc2f36505542fdb19a2b9d1da1b33ad92fba8 /package/ndisc/patches/patch-src_addrinfo_c | |
parent | 6a7c5ff345b197c1d5f0f845adb2bb0da9690075 (diff) |
convert checksum check to sha256
Rename the variable name to PKG_HASH and use a
256 Bit SHA checksum to verify the integrity of
distfiles. While there do some housekeeping and
remove old packages.
Diffstat (limited to 'package/ndisc/patches/patch-src_addrinfo_c')
-rw-r--r-- | package/ndisc/patches/patch-src_addrinfo_c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/ndisc/patches/patch-src_addrinfo_c b/package/ndisc/patches/patch-src_addrinfo_c deleted file mode 100644 index 74dbe928d..000000000 --- a/package/ndisc/patches/patch-src_addrinfo_c +++ /dev/null @@ -1,21 +0,0 @@ -$Id: update-patches 24 2008-08-31 14:56:13Z wbx $ ---- ndisc6-0.9.8.orig/src/addrinfo.c 2008-05-01 14:52:28.000000000 +0200 -+++ ndisc6-0.9.8/src/addrinfo.c 2009-05-10 19:14:46.000000000 +0200 -@@ -53,7 +53,7 @@ gai_perror (int errval, const char *msg) - static int - printnames (const char *name, int family, int aflags, int nflags, bool single) - { -- struct addrinfo hints, *res; -+ struct addrinfo hints, *res, *ptr; - - memset (&hints, 0, sizeof (hints)); - hints.ai_family = family; -@@ -67,7 +67,7 @@ printnames (const char *name, int family - return -1; - } - -- for (struct addrinfo *ptr = res; ptr != NULL; ptr = ptr->ai_next) -+ for (ptr = res; ptr != NULL; ptr = ptr->ai_next) - { - char hostname[NI_MAXHOST]; - |