Fixed compile error when asyncns is not available [#17]
authorJelmer Vernooij <jelmer@samba.org>
Sat, 04 Oct 2008 20:44:22 +0200
changeset 499 1d61af397e09
parent 497 bb4157a604ec
child 500 915cd386918e
Fixed compile error when asyncns is not available [#17] Fixed a typo in lm-resolver that breaks compilation when libasyncns is not available. [#17 tagged:committed responsible:Hallski state:resolved] committer: Mikael Hallendal <micke@imendio.com>
loudmouth/lm-resolver.c
--- a/loudmouth/lm-resolver.c	Thu Aug 28 15:15:28 2008 +0200
+++ b/loudmouth/lm-resolver.c	Sat Oct 04 20:44:22 2008 +0200
@@ -278,7 +278,7 @@
 
 #if HAVE_ASYNCNS
         resolver = g_object_new (LM_TYPE_ASYNCNS_RESOLVER, NULL);
-#elif
+#else
         resolver = g_object_new (LM_TYPE_BLOCKING_RESOLVER, NULL);
 #endif