summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2005-03-07 15:31:26 +0000
committeradam <adam@pkgsrc.org>2005-03-07 15:31:26 +0000
commit678024a53ab921c485e0394f1e78f84cb8367405 (patch)
treec61d6e3a9204756cbd00397531422f4ed53468d6 /audio
parent6b5d24a043685c0cb75a98ac09d5044b6789d45b (diff)
downloadpkgsrc-678024a53ab921c485e0394f1e78f84cb8367405.tar.gz
Changes 0.3.0:
Diffstat (limited to 'audio')
-rw-r--r--audio/libopendaap/patches/patch-aa31
1 files changed, 0 insertions, 31 deletions
diff --git a/audio/libopendaap/patches/patch-aa b/audio/libopendaap/patches/patch-aa
deleted file mode 100644
index 613df4eb72e..00000000000
--- a/audio/libopendaap/patches/patch-aa
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2004/08/01 16:13:32 kristerw Exp $
-
---- mDNS/mDNS.c.orig Sun Aug 1 18:03:05 2004
-+++ mDNS/mDNS.c Sun Aug 1 18:04:13 2004
-@@ -5410,12 +5410,12 @@
-
- for (i = 0; i < totalrecords && ptr && ptr < end; i++)
- {
-+ char buf[1000];
- LargeCacheRecord pkt;
- const mDNSu8 RecordType = (mDNSu8)((i < response->h.numAnswers) ? kDNSRecordTypePacketAns : kDNSRecordTypePacketAdd);
- ptr = GetLargeResourceRecord(m, response, ptr, end, InterfaceID, RecordType, &pkt);
- if (!ptr) break; // Break out of the loop and clean up our CacheFlushRecords list before exiting
-
-- char buf[1000];
- ConvertDomainNameToCString(&pkt.r.resrec.name, buf);
- verbosedebugf("%s\n", buf);
- // 1. Check that this packet resource record does not conflict with any of ours
-@@ -5500,9 +5500,10 @@
- // 2. See if we want to add this packet resource record to our cache
- if (m->rrcache_size) // Only try to cache answers if we have a cache to put them in
- {
-- verbosedebugf("caching\n");
-- mDNSu32 slot = HashSlot(&pkt.r.resrec.name);
-+ mDNSu32 slot;
- CacheRecord *rr;
-+ verbosedebugf("caching\n");
-+ slot = HashSlot(&pkt.r.resrec.name);
- // 2a. Check if this packet resource record is already in our cache
- for (rr = m->rrcache_hash[slot]; rr; rr=rr->next)
- {