diff options
author | Lennart Poettering <lennart@poettering.net> | 2005-05-03 21:22:52 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2005-05-03 21:22:52 +0000 |
commit | b8c78f5c0da93d92aa28d3ef3757e78d03141f41 (patch) | |
tree | 78c3cb189c50296b6a936bf41c935762a85116bf /psched.c | |
parent | 72e2daefd371691e385bcd61741ee696391941d8 (diff) |
* correctly build probe packets
* fix conflict detection
* correctly handle FLUSH bit in incoming packets
* drop whole group when one record conflicts
* remove wrong TRUE/FALSE usage in flx_server_add_service_va()
* fix wrong pass-through in switch satetement in rr.c
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@37 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'psched.c')
-rw-r--r-- | psched.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -615,7 +615,7 @@ static guint8* packet_add_probe_query(flxPacketScheduler *s, flxDnsPacket *p, fl continue; /* Does the record match the probe? */ - if (k->class != pj->record->key->class || flx_domain_equal(k->name, pj->record->key->name)) + if (k->class != pj->record->key->class || !flx_domain_equal(k->name, pj->record->key->name)) continue; /* This job wouldn't fit in */ |