]> git.pld-linux.org Git - packages/avahi.git/commitdiff
- AC-branch only
authorJakub Bogusz <qboosh@pld-linux.org>
Mon, 15 Jan 2007 16:44:02 +0000 (16:44 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    avahi-compressed_dns.patch -> 1.2
    avahi-netlink.patch -> 1.2

avahi-compressed_dns.patch [deleted file]
avahi-netlink.patch [deleted file]

diff --git a/avahi-compressed_dns.patch b/avahi-compressed_dns.patch
deleted file mode 100644 (file)
index 788d530..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-Index: avahi-core/dns.c
-===================================================================
---- avahi-core/dns.c   (Revision 1339)
-+++ avahi-core/dns.c   (Arbeitskopie)
-@@ -331,7 +331,7 @@
- static int consume_labels(AvahiDnsPacket *p, unsigned idx, char *ret_name, size_t l) {
-     int ret = 0;
-     int compressed = 0;
--    int first_label = 1;
-+    int first_label = 1, label_ptr;
-     assert(p && ret_name && l);
-     
-     for (;;) {
-@@ -384,8 +384,13 @@
-             if (idx+2 > p->size)
-                 return -1;
--            idx = ((unsigned) (AVAHI_DNS_PACKET_DATA(p)[idx] & ~0xC0)) << 8 | AVAHI_DNS_PACKET_DATA(p)[idx+1];
-+            label_ptr = ((unsigned) (AVAHI_DNS_PACKET_DATA(p)[idx] & ~0xC0)) << 8 | AVAHI_DNS_PACKET_DATA(p)[idx+1];
-+            if (label_ptr >= idx)
-+                return -1;
-+
-+            idx = label_ptr;
-+
-             if (!compressed)
-                 ret += 2;
-             
diff --git a/avahi-netlink.patch b/avahi-netlink.patch
deleted file mode 100644 (file)
index b7cc743..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: avahi-core/netlink.c
-===================================================================
---- avahi-core/netlink.c       (revision 1329)
-+++ avahi-core/netlink.c       (working copy)
-@@ -62,6 +62,12 @@
-     p = (struct nlmsghdr *) nl->buffer;
-     
-+    /* Check that this message originated from the kernel,
-+       or a request from avahi itself, and not another process */
-+    if ((p->nlmsg_pid != 0) && (p->nlmsg_pid != getpid())) {
-+        return -1;
-+    }
-+
-     assert(nl->callback);
-     
-     for (; bytes > 0; p = NLMSG_NEXT(p, bytes)) {
This page took 0.075914 seconds and 4 git commands to generate.