diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-12-29 13:32:25 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-12-29 13:56:17 +0200 |
commit | 89a718d88ec7466e721f3bbe9ede5ffe58061d78 (patch) | |
tree | ce82cc92b35b958fd354d92e608fe12c1015a625 /main/musl/0027-fix-misspelling-of-a-legacy-macro-name-in-sys-param..patch | |
parent | 81aa969f2f227eb7c2ebf2d70a7df1a8a2bb56e0 (diff) | |
download | aports-89a718d88ec7466e721f3bbe9ede5ffe58061d78.tar.bz2 aports-89a718d88ec7466e721f3bbe9ede5ffe58061d78.tar.xz |
main/musl: upstream fixes, and add ipv6 features to getent
fixes #6590
Diffstat (limited to 'main/musl/0027-fix-misspelling-of-a-legacy-macro-name-in-sys-param..patch')
-rw-r--r-- | main/musl/0027-fix-misspelling-of-a-legacy-macro-name-in-sys-param..patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/main/musl/0027-fix-misspelling-of-a-legacy-macro-name-in-sys-param..patch b/main/musl/0027-fix-misspelling-of-a-legacy-macro-name-in-sys-param..patch new file mode 100644 index 0000000000..b0a472a95e --- /dev/null +++ b/main/musl/0027-fix-misspelling-of-a-legacy-macro-name-in-sys-param..patch @@ -0,0 +1,25 @@ +From 4b8f94c2501e6fea3db631b73b0c91e34e2134cf Mon Sep 17 00:00:00 2001 +From: Rich Felker <dalias@aerifal.cx> +Date: Thu, 20 Oct 2016 17:01:56 -0400 +Subject: [PATCH] fix misspelling of a legacy macro name in sys/param.h + +--- + include/sys/param.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/include/sys/param.h b/include/sys/param.h +index 344c0d23..ce6b8019 100644 +--- a/include/sys/param.h ++++ b/include/sys/param.h +@@ -7,7 +7,7 @@ + #define MAXPATHLEN 4096 + #define NBBY 8 + #define NGROUPS 32 +-#define CANBSIZE 255 ++#define CANBSIZ 255 + #define NOFILE 256 + #define NCARGS 131072 + #define DEV_BSIZE 512 +-- +2.11.0 + |