]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
util: remove DNSMASQ_RA_SUPPORT
authorJán Tomko <jtomko@redhat.com>
Tue, 14 Dec 2021 16:55:42 +0000 (17:55 +0100)
committerJán Tomko <jtomko@redhat.com>
Wed, 15 Dec 2021 14:28:17 +0000 (15:28 +0100)
Now that the macro is unused, delete it.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
src/util/virdnsmasq.h

index 92c5d4129d4421d7e6fabacbe2bb2cee6fa52b92..9b8aeef226b5fce22c3e5c836b47ef5fe6c97ed8 100644 (file)
@@ -106,11 +106,3 @@ const char *dnsmasqCapsGetBinaryPath(dnsmasqCaps *caps);
 unsigned long dnsmasqCapsGetVersion(dnsmasqCaps *caps);
 char *dnsmasqDhcpHostsToString(dnsmasqDhcpHost *hosts,
                                unsigned int nhosts);
-
-#define DNSMASQ_RA_MAJOR_REQD 2
-#define DNSMASQ_RA_MINOR_REQD 64
-
-#define DNSMASQ_RA_SUPPORT(CAPS) \
-    (dnsmasqCapsGetVersion(CAPS) >= \
-     (DNSMASQ_RA_MAJOR_REQD * 1000000) + \
-     (DNSMASQ_RA_MINOR_REQD * 1000))