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.
This commit is contained in:
Richard W.M. Jones 2007-11-26 11:56:41 +00:00
parent 31527e43d9
commit fe9d013c3e
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -21,7 +21,7 @@
* Author: Daniel P. Berrange <berrange@redhat.com>
*/
#include <config.h>
#include "config.h"
#define _GNU_SOURCE /* for asprintf */
@ -612,8 +612,10 @@ remoteListenTCP (struct qemud_server *server,
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;