build | 1 Dec 2005 01:00
Picon
Favicon

Build status as of Thu Dec 1 00:00:02 2005

URL: http://build.samba.org/

--- /home/build/master/cache/broken_results.txt.old	2005-11-30 00:00:09.000000000 +0000
+++ /home/build/master/cache/broken_results.txt	2005-12-01 00:00:11.000000000 +0000
 <at>  <at>  -1,17 +1,17  <at>  <at> 
-Build status as of Wed Nov 30 00:00:01 2005
+Build status as of Thu Dec  1 00:00:02 2005

 Build counts:
 Tree         Total  Broken Panic 
 ccache       12     3      0     
-distcc       13     2      0     
-lorikeet-heimdal 30     15     0     
-ppp          17     0      0     
-rsync        30     1      0     
+distcc       13     3      0     
+lorikeet-heimdal 32     15     0     
+ppp          18     0      0     
+rsync        35     2      0     
 samba        4      0      0     
 samba-docs   0      0      0     
-samba4       34     18     0     
-samba_3_0    35     9      0     
-smb-build    27     2      0     
-talloc       9      3      0     
-tdb          9      3      0     
+samba4       35     17     1     
+samba_3_0    36     6      0     
+smb-build    28     2      0     
+talloc       10     4      0     
(Continue reading)

tridge | 1 Dec 2005 01:18
Picon
Favicon
Gravatar

svn commit: samba r11980 - in branches/SAMBA_4_0/source: include libcli/smb2 librpc/rpc

Author: tridge
Date: 2005-12-01 00:18:29 +0000 (Thu, 01 Dec 2005)
New Revision: 11980

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

Log:

ronnie worked out that opcode 0xb in SMB2 is in fact ioctl, and that
it only appeared to be like a SMBtrans request as it was being called
with function 0x11c017 which is "named pipe read write"

I wonder if this means we could do DCE/RPC over SMB using ntioctl
calls as well?

Added:
   branches/SAMBA_4_0/source/libcli/smb2/ioctl.c
Removed:
   branches/SAMBA_4_0/source/libcli/smb2/trans.c
Modified:
   branches/SAMBA_4_0/source/include/ioctl.h
   branches/SAMBA_4_0/source/include/structs.h
   branches/SAMBA_4_0/source/libcli/smb2/config.mk
   branches/SAMBA_4_0/source/libcli/smb2/smb2.h
   branches/SAMBA_4_0/source/libcli/smb2/smb2_calls.h
   branches/SAMBA_4_0/source/librpc/rpc/dcerpc_smb2.c

Changeset:
Sorry, the patch is too large (375 lines) to include; please use WebSVN to see it!
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=11980
(Continue reading)

tridge | 1 Dec 2005 01:19
Picon
Favicon
Gravatar

svn commit: samba r11981 - in branches/SAMBA_4_0/source/lib/ldb/modules: .

Author: tridge
Date: 2005-12-01 00:19:36 +0000 (Thu, 01 Dec 2005)
New Revision: 11981

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

Log:

we should allocate request specific memory in ldb modules off the
request strucutre. It will take a while for this to happen everywhere.

Modified:
   branches/SAMBA_4_0/source/lib/ldb/modules/operational.c

Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/modules/operational.c
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/modules/operational.c	2005-12-01 00:18:29 UTC (rev 11980)
+++ branches/SAMBA_4_0/source/lib/ldb/modules/operational.c	2005-12-01 00:19:36 UTC (rev 11981)
 <at>  <at>  -201,7 +201,7  <at>  <at> 
 			if (ldb_attr_cmp(attrs[a], search_sub[i].attr) == 0 &&
 			    search_sub[i].replace) {
 				if (!search_attrs) {
-					search_attrs = ldb_attr_list_copy(module, attrs);
+					search_attrs = ldb_attr_list_copy(req, attrs);
 					if (search_attrs == NULL) {
 						goto failed;
 					}

(Continue reading)

tridge | 1 Dec 2005 01:22
Picon
Favicon
Gravatar

svn commit: samba r11982 - in branches/SAMBA_4_0/source/libcli/raw: .

Author: tridge
Date: 2005-12-01 00:22:08 +0000 (Thu, 01 Dec 2005)
New Revision: 11982

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

Log:

ensure the fde event gets freed before the socket itself, as otherwise
we get a error from epoll about disabling events for a file descriptor
that is closed

Modified:
   branches/SAMBA_4_0/source/libcli/raw/clisocket.c
   branches/SAMBA_4_0/source/libcli/raw/clitransport.c

Changeset:
Modified: branches/SAMBA_4_0/source/libcli/raw/clisocket.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/raw/clisocket.c	2005-12-01 00:19:36 UTC (rev 11981)
+++ branches/SAMBA_4_0/source/libcli/raw/clisocket.c	2005-12-01 00:22:08 UTC (rev 11982)
 <at>  <at>  -179,10 +179,10  <at>  <at> 
 ****************************************************************************/
 void smbcli_sock_dead(struct smbcli_socket *sock)
 {
-	if (sock->sock != NULL) {
-		talloc_free(sock->sock);
-		sock->sock = NULL;
-	}
+	talloc_free(sock->event.fde);
(Continue reading)

tridge | 1 Dec 2005 01:23
Picon
Favicon
Gravatar

svn commit: samba r11983 - in branches/SAMBA_4_0/source/lib/talloc: .

Author: tridge
Date: 2005-12-01 00:23:01 +0000 (Thu, 01 Dec 2005)
New Revision: 11983

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

Log:

make talloc LGPL. This makes more sense given that ldb depends on
talloc, and ldb is now LGPL

Modified:
   branches/SAMBA_4_0/source/lib/talloc/talloc.c

Changeset:
Modified: branches/SAMBA_4_0/source/lib/talloc/talloc.c
===================================================================
--- branches/SAMBA_4_0/source/lib/talloc/talloc.c	2005-12-01 00:22:08 UTC (rev 11982)
+++ branches/SAMBA_4_0/source/lib/talloc/talloc.c	2005-12-01 00:23:01 UTC (rev 11983)
 <at>  <at>  -7,19 +7,23  <at>  <at> 

    Copyright (C) Andrew Tridgell 2004

-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
-   (at your option) any later version.
+     ** NOTE! The following LGPL license applies to the talloc
+     ** library. This does NOT imply that all of Samba is released
+     ** under the LGPL
(Continue reading)

tridge | 1 Dec 2005 01:25
Picon
Favicon
Gravatar

svn commit: samba r11984 - in branches/SAMBA_4_0/source/lib/talloc: .

Author: tridge
Date: 2005-12-01 00:25:06 +0000 (Thu, 01 Dec 2005)
New Revision: 11984

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

Log:

LGPL on header and testsuite as well

Modified:
   branches/SAMBA_4_0/source/lib/talloc/talloc.h
   branches/SAMBA_4_0/source/lib/talloc/testsuite.c

Changeset:
Modified: branches/SAMBA_4_0/source/lib/talloc/talloc.h
===================================================================
--- branches/SAMBA_4_0/source/lib/talloc/talloc.h	2005-12-01 00:23:01 UTC (rev 11983)
+++ branches/SAMBA_4_0/source/lib/talloc/talloc.h	2005-12-01 00:25:06 UTC (rev 11984)
 <at>  <at>  -6,19 +6,23  <at>  <at> 

    Copyright (C) Andrew Tridgell 2004-2005

-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
-   (at your option) any later version.
+     ** NOTE! The following LGPL license applies to the talloc
+     ** library. This does NOT imply that all of Samba is released
+     ** under the LGPL
(Continue reading)

jra | 1 Dec 2005 01:43
Picon
Favicon

svn commit: samba r11986 - in trunk/source: include lib

Author: jra
Date: 2005-12-01 00:43:36 +0000 (Thu, 01 Dec 2005)
New Revision: 11986

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

Log:
Move to LGPL as per tridge's Samba4 change.
Jeremy.

Modified:
   trunk/source/include/talloc.h
   trunk/source/lib/talloc.c

Changeset:
Modified: trunk/source/include/talloc.h
===================================================================
--- trunk/source/include/talloc.h	2005-12-01 00:43:34 UTC (rev 11985)
+++ trunk/source/include/talloc.h	2005-12-01 00:43:36 UTC (rev 11986)
 <at>  <at>  -6,19 +6,23  <at>  <at> 

    Copyright (C) Andrew Tridgell 2004-2005

-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
-   (at your option) any later version.
+     ** NOTE! The following LGPL license applies to the talloc
+     ** library. This does NOT imply that all of Samba is released
+     ** under the LGPL
(Continue reading)

jra | 1 Dec 2005 01:43
Picon
Favicon

svn commit: samba r11985 - in branches/SAMBA_3_0/source: include lib

Author: jra
Date: 2005-12-01 00:43:34 +0000 (Thu, 01 Dec 2005)
New Revision: 11985

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

Log:
Move to LGPL as per tridge's Samba4 change.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/include/talloc.h
   branches/SAMBA_3_0/source/lib/talloc.c

Changeset:
Modified: branches/SAMBA_3_0/source/include/talloc.h
===================================================================
--- branches/SAMBA_3_0/source/include/talloc.h	2005-12-01 00:25:06 UTC (rev 11984)
+++ branches/SAMBA_3_0/source/include/talloc.h	2005-12-01 00:43:34 UTC (rev 11985)
 <at>  <at>  -6,19 +6,23  <at>  <at> 

    Copyright (C) Andrew Tridgell 2004-2005

-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
-   (at your option) any later version.
+     ** NOTE! The following LGPL license applies to the talloc
+     ** library. This does NOT imply that all of Samba is released
+     ** under the LGPL
(Continue reading)

abartlet | 1 Dec 2005 05:50
Picon
Favicon

svn commit: samba r11987 - in branches/SAMBA_4_0/source/kdc: .

Author: abartlet
Date: 2005-12-01 04:50:28 +0000 (Thu, 01 Dec 2005)
New Revision: 11987

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

Log:
Clarify the accountExpires behaviour in the KDC.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/kdc/hdb-ldb.c

Changeset:
Modified: branches/SAMBA_4_0/source/kdc/hdb-ldb.c
===================================================================
--- branches/SAMBA_4_0/source/kdc/hdb-ldb.c	2005-12-01 00:43:36 UTC (rev 11986)
+++ branches/SAMBA_4_0/source/kdc/hdb-ldb.c	2005-12-01 04:50:28 UTC (rev 11987)
 <at>  <at>  -310,16 +310,17  <at>  <at> 

 	ent->valid_start = NULL;

-	acct_expiry = samdb_result_nttime(msg, "accountExpires", -1LL);
-	if (acct_expiry != -1LL && acct_expiry != 0x7FFFFFFFFFFFFFFFLL) {
+	acct_expiry = samdb_result_nttime(msg, "accountExpires", (NTTIME)-1);
+	if ((acct_expiry == (NTTIME)-1) ||
+	    (acct_expiry == 0x7FFFFFFFFFFFFFFFULL)) {
+		ent->valid_end = NULL;
+	} else {
(Continue reading)

abartlet | 1 Dec 2005 05:52
Picon
Favicon

svn commit: samba r11988 - in branches/SAMBA_4_0/source/lib/ldb/tools: .

Author: abartlet
Date: 2005-12-01 04:52:54 +0000 (Thu, 01 Dec 2005)
New Revision: 11988

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

Log:
Setup the sessionInfo just before the connect, rather than earlier
when we havn't finished popt.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/lib/ldb/tools/cmdline.c

Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/tools/cmdline.c
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/tools/cmdline.c	2005-12-01 04:50:28 UTC (rev 11987)
+++ branches/SAMBA_4_0/source/lib/ldb/tools/cmdline.c	2005-12-01 04:52:54 UTC (rev 11988)
 <at>  <at>  -76,10 +76,6  <at>  <at> 
 		goto failed;
 	}

-	if (ldb_set_opaque(ldb, "sessionInfo", system_session(ldb))) {
-		goto failed;
-	}
-
 #endif

(Continue reading)


Gmane