svn commit: samba r25445 - in branches: SAMBA_3_2/source SAMBA_3_2_0/source

jra at samba.org jra at samba.org
Mon Oct 1 18:30:02 GMT 2007


Author: jra
Date: 2007-10-01 18:30:01 +0000 (Mon, 01 Oct 2007)
New Revision: 25445

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25445

Log:
Fix IPV6 detection.
Jeremy.

Modified:
   branches/SAMBA_3_2/source/configure.in
   branches/SAMBA_3_2_0/source/configure.in


Changeset:
Modified: branches/SAMBA_3_2/source/configure.in
===================================================================
--- branches/SAMBA_3_2/source/configure.in	2007-10-01 15:49:56 UTC (rev 25444)
+++ branches/SAMBA_3_2/source/configure.in	2007-10-01 18:30:01 UTC (rev 25445)
@@ -3094,8 +3094,8 @@
 [
 struct sockaddr_storage sa_store;
 struct addrinfo *ai = NULL;
-int s = socket(AF_INET6, SOCK_STREAM, 0)
-int ret = getaddrinfo(NULL, NULL, NULL &ai);
+int s = socket(AF_INET6, SOCK_STREAM, 0);
+int ret = getaddrinfo(NULL, NULL, NULL, &ai);
 if (ret != 0) {
 	const char *es = gai_strerror(ret);
 }

Modified: branches/SAMBA_3_2_0/source/configure.in
===================================================================
--- branches/SAMBA_3_2_0/source/configure.in	2007-10-01 15:49:56 UTC (rev 25444)
+++ branches/SAMBA_3_2_0/source/configure.in	2007-10-01 18:30:01 UTC (rev 25445)
@@ -2974,8 +2974,8 @@
 [
 struct sockaddr_storage sa_store;
 struct addrinfo *ai = NULL;
-int s = socket(AF_INET6, SOCK_STREAM, 0)
-int ret = getaddrinfo(NULL, NULL, NULL &ai);
+int s = socket(AF_INET6, SOCK_STREAM, 0);
+int ret = getaddrinfo(NULL, NULL, NULL, &ai);
 if (ret != 0) {
 	const char *es = gai_strerror(ret);
 }



More information about the samba-cvs mailing list