[SCM] Samba Shared Repository - branch master updated

2013-02-09 Thread Andrew Bartlett
The branch, master has been updated
   via  c932b13 Improve the configure tests for aio_suspend to get rid of 
warnings. Timur provided the wscript method, I added the configure.in 
correction.
  from  233b32b s3: Make SMB2_GETINFO multi-volume aware.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit c932b139c8d1fc0b6a357623fe4011edabb45422
Author: Richard Sharpe realrichardsha...@gmail.com
Date:   Fri Feb 8 19:56:56 2013 -0800

Improve the configure tests for aio_suspend to get rid of warnings. Timur 
provided the wscript method, I added the configure.in correction.

Signed-off-by: Timur Bakeyev ti...@freebsd.org
Signed-off-by: Richard Sharpe realrichardsha...@gmail.com

Reviewed-by: Andrew Bartlett abart...@samba.org

Autobuild-User(master): Andrew Bartlett abart...@samba.org
Autobuild-Date(master): Sat Feb  9 09:24:06 CET 2013 on sn-devel-104

---

Summary of changes:
 source3/configure.in |2 +-
 source3/wscript  |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/configure.in b/source3/configure.in
index 031a33d..1b24ad6 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -5387,7 +5387,7 @@ int main() { struct aiocb a; return aio_cancel(1, a); 
}])],
 
AC_MSG_CHECKING(for aio_suspend)
AC_LINK_IFELSE([AC_LANG_SOURCE([#include aio.h
-int main() { struct aiocb a; struct timespec t; return aio_suspend(a, 1, t); 
}])],
+int main() { const struct aiocb * const [a[1]]; struct timespec t; return 
aio_suspend(a, 1, t); }])],
 [AC_DEFINE(HAVE_AIO_SUSPEND, 1, [Have aio_suspend]) AC_MSG_RESULT(yes)],
 [AC_MSG_RESULT(no)])
else
diff --git a/source3/wscript b/source3/wscript
index 84abf76..7a99dc1 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -471,7 +471,7 @@ return acl_get_perm_np(permset_d, perm);
 conf.CHECK_CODE('struct aiocb a; return aio_return(a);', 
'HAVE_AIO_RETURN', msg='Checking for aio_return', headers='aio.h', lib='aio rt')
 conf.CHECK_CODE('struct aiocb a; return aio_error(a);', 
'HAVE_AIO_ERROR', msg='Checking for aio_error', headers='aio.h', lib='aio rt')
 conf.CHECK_CODE('struct aiocb a; return aio_cancel(1, a);', 
'HAVE_AIO_CANCEL', msg='Checking for aio_cancel', headers='aio.h', lib='aio rt')
-conf.CHECK_CODE('struct aiocb a; struct timespec t; return 
aio_suspend(a, 1, t);', 'HAVE_AIO_SUSPEND', msg='Checking for aio_suspend', 
headers='aio.h', lib='aio rt')
+conf.CHECK_CODE('const struct aiocb * const a[1]; struct timespec 
t; return aio_suspend(a, 1, t);', 'HAVE_AIO_SUSPEND', msg='Checking for 
aio_suspend', headers='aio.h', lib='aio rt')
 if not conf.CONFIG_SET('HAVE_AIO'):
 conf.DEFINE('HAVE_NO_AIO', '1')
 else:


-- 
Samba Shared Repository


Re: [SCM] Samba Shared Repository - branch master updated

2013-02-09 Thread Andreas Schneider
On Friday 08 February 2013 17:06:12 Jeremy Allison wrote:
 On Thu, Feb 07, 2013 at 03:51:05PM +0100, Andreas Schneider wrote:
  The branch, master has been updated
  
 via  62e6ea4 s3-rpc_server: Fix password encoding in
 _netr_ServerGetTrustInfo(). via  823a25f s3-rpc_server: Dont wipe
 out ref pointers in _netr_ServerGetTrustInfo().   
from  ff496ef autoconf: rename pdb_ldap module to pdb_ldapsam
  
  commit 62e6ea408a20197420eadb133df6ba233c7874b4
  Author: Sumit Bose sb...@redhat.com
  Date:   Mon Feb 4 13:15:18 2013 +0100
  
  s3-rpc_server: Fix password encoding in _netr_ServerGetTrustInfo().
  
  Reviewed-by: Günther Deschner g...@samba.org
  Reviewed-by: Andreas Schneider a...@samba.org
  
  commit 823a25f6a47c311ab33874be8a889ffbaf8db527
  Author: Günther Deschner g...@samba.org
  Date:   Tue Dec 11 09:29:37 2012 +0100
  
  s3-rpc_server: Dont wipe out ref pointers in
  _netr_ServerGetTrustInfo().
  
  Guenther
  
  Signed-off-by: Günther Deschner g...@samba.org
  Reviewed-by: Andreas Schneider a...@samba.org
 
 Do we need these in 3.6.x and 4.0.x ?
 
 Jeremy.

I think so, I thought Sumit or Günther created a bug for it.

Günther?


-- andreas

-- 
Andreas Schneider   GPG-ID: F33E3FC6
Samba Team a...@samba.org
www.samba.org



autobuild: intermittent test failure detected

2013-02-09 Thread autobuild
The autobuild test system has detected an intermittent failing test in 
the current master tree.

The autobuild log of the failure is available here:

   http://git.samba.org/autobuild.flakey/2013-02-09-1926/flakey.log

The samba3 build logs are available here:

   http://git.samba.org/autobuild.flakey/2013-02-09-1926/samba3.stderr
   http://git.samba.org/autobuild.flakey/2013-02-09-1926/samba3.stdout

The source4 build logs are available here:

   http://git.samba.org/autobuild.flakey/2013-02-09-1926/samba.stderr
   http://git.samba.org/autobuild.flakey/2013-02-09-1926/samba.stdout
  
The top commit at the time of the failure was:

commit c932b139c8d1fc0b6a357623fe4011edabb45422
Author: Richard Sharpe realrichardsha...@gmail.com
Date:   Fri Feb 8 19:56:56 2013 -0800

Improve the configure tests for aio_suspend to get rid of warnings. Timur 
provided the wscript method, I added the configure.in correction.

Signed-off-by: Timur Bakeyev ti...@freebsd.org
Signed-off-by: Richard Sharpe realrichardsha...@gmail.com

Reviewed-by: Andrew Bartlett abart...@samba.org

Autobuild-User(master): Andrew Bartlett abart...@samba.org
Autobuild-Date(master): Sat Feb  9 09:24:06 CET 2013 on sn-devel-104