diff options
author | Lennart Poettering <lennart@poettering.net> | 2005-05-06 00:21:04 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2005-05-06 00:21:04 +0000 |
commit | 844f6b5a8213018c3d42b5ef924b61cf3eafcdbb (patch) | |
tree | 626546505777d3e3eb25958119e57d3a5790ab97 /psched.c | |
parent | 3b077d5a0fdcf96897ef26be574b6a4d69dd2c13 (diff) |
some preliminary work for adding legacy unicast and unicast response support
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@45 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'psched.c')
-rw-r--r-- | psched.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -111,7 +111,7 @@ static guint8* packet_add_query_job(flxPacketScheduler *s, flxDnsPacket *p, flxQ g_assert(p); g_assert(qj); - if ((d = flx_dns_packet_append_key(p, qj->key))) { + if ((d = flx_dns_packet_append_key(p, qj->key, FALSE))) { GTimeVal tv; qj->done = 1; @@ -603,7 +603,7 @@ static guint8* packet_add_probe_query(flxPacketScheduler *s, flxDnsPacket *p, fl /* Create the probe query */ k = flx_key_new(pj->record->key->name, pj->record->key->class, FLX_DNS_TYPE_ANY); - ret = flx_dns_packet_append_key(p, k); + ret = flx_dns_packet_append_key(p, k, FALSE); g_assert(ret); /* Mark this job for addition to the packet */ |