* qemud/qemud.c: If AF_INET6 not defined, don't test for it.
+Mon Nov 26 11:56:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
+
+ * qemud/qemud.c: If AF_INET6 not defined, don't test for it.
+
Mon Nov 26 11:54:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
* qemud/internal.h: Miscellaneous header file fixes to allow
* Author: Daniel P. Berrange <berrange@redhat.com>
*/
-#include <config.h>
+#include "config.h"
#define _GNU_SOURCE /* for asprintf */
if (sa.ss_family == AF_INET)
sock->port = htons(((struct sockaddr_in*)&sa)->sin_port);
+#ifdef AF_INET6
else if (sa.ss_family == AF_INET6)
sock->port = htons(((struct sockaddr_in6*)&sa)->sin6_port);
+#endif
else
sock->port = -1;