summaryrefslogtreecommitdiff
path: root/package/ndisc/patches/patch-src_ndisc_c.orig
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-08-21 12:35:48 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-08-21 12:35:48 +0200
commit187960a69f36d84730783fa9fcc418bef1f27ea7 (patch)
tree55f631e3b8dd408910ac692057445c7c0828b0b7 /package/ndisc/patches/patch-src_ndisc_c.orig
parentf80eda0c17801058135f47e7f5ac3f6970e718ff (diff)
parentaba1a43bf5b8a3cbf8251e4302dcbee58fc81fcd (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/ndisc/patches/patch-src_ndisc_c.orig')
-rw-r--r--package/ndisc/patches/patch-src_ndisc_c.orig20
1 files changed, 0 insertions, 20 deletions
diff --git a/package/ndisc/patches/patch-src_ndisc_c.orig b/package/ndisc/patches/patch-src_ndisc_c.orig
deleted file mode 100644
index 8bc600948..000000000
--- a/package/ndisc/patches/patch-src_ndisc_c.orig
+++ /dev/null
@@ -1,20 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- ndisc6-0.9.8.orig/src/ndisc.c 2008-05-01 14:52:28.000000000 +0200
-+++ ndisc6-0.9.8/src/ndisc.c 2009-05-10 19:16:18.000000000 +0200
-@@ -521,6 +521,7 @@ static ssize_t
- recvfromLL (int fd, void *buf, size_t len, int flags,
- struct sockaddr_in6 *addr)
- {
-+ struct cmsghdr *cmsg;
- char cbuf[CMSG_SPACE (sizeof (int))];
- struct iovec iov =
- {
-@@ -542,7 +543,7 @@ recvfromLL (int fd, void *buf, size_t le
- return val;
-
- /* ensures the hop limit is 255 */
-- for (struct cmsghdr *cmsg = CMSG_FIRSTHDR (&hdr);
-+ for (cmsg = CMSG_FIRSTHDR (&hdr);
- cmsg != NULL;
- cmsg = CMSG_NXTHDR (&hdr, cmsg))
- {