summaryrefslogtreecommitdiff
path: root/toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2011-07-04 10:15:37 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2011-07-04 10:15:37 +0200
commit31f5268b3dff62bc414b719c556b61923a4601b0 (patch)
tree9c1b8d5b6d5b64cefff5bcc2c0e5f2a597fb7195 /toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch
parentf1e4aac40ec1271aae5c056243cdc9e2b0b6f2bf (diff)
toolchain/uClibc: remove 0.9.29, mark 0.9.30 as deprecated
0.9.29 doesn't seem to build anymore with the toolchain versions in BR and is very old, so remove it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch')
-rw-r--r--toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch b/toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch
deleted file mode 100644
index 7b246c1ad..000000000
--- a/toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur uClibc-0.9.29/libc/inet/resolv.c uClibc-0.9.29-patched/libc/inet/resolv.c
---- uClibc-0.9.29/libc/inet/resolv.c 2007-04-23 12:01:05.000000000 -0500
-+++ uClibc-0.9.29-patched/libc/inet/resolv.c 2007-05-09 18:05:33.563404419 -0500
-@@ -1700,7 +1700,7 @@
- int gethostent_r(struct hostent *result_buf, char *buf, size_t buflen,
- struct hostent **result, int *h_errnop)
- {
-- int ret;
-+ int ret = HOST_NOT_FOUND;
-
- __UCLIBC_MUTEX_LOCK(mylock);
- if (__gethostent_fp == NULL) {