Ticket #71 (closed defect: fixed)

Opened 2 years ago

Last modified 2 years ago

D-Bus version detection only works for version < 1.0

Reported by: lathiat Assigned to: lennart
Priority: major Milestone: Avahi 0.6.16
Component: avahi-client Version:
Keywords: Cc:

Description

in avahi-client/dbus-protocol.c, it does a dbus version check as so:

#if (DBUS_VERSION_MAJOR == 0) && (DBUS_VERSION_MINOR >= 60)

This is bad because it doesnt work for versions >= 1.0

This should be

#if (DBUS_VERSION_MAJOR == 0) && (DBUS_VERSION_MINOR < 60)

And reverse the then/else segments

Change History

11/11/06 01:02:05 changed by lathiat

  • status changed from new to closed.
  • resolution set to fixed.
  • milestone set to Avahi 0.7.

Fixed in R1333

01/02/07 01:05:08 changed by lennart

  • milestone changed from Avahi 0.7 to Avahi 0.6.16.