build | 1 Jan 2006 01:00
Picon
Favicon

Build status as of Sun Jan 1 00:00:01 2006

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

--- /home/build/master/cache/broken_results.txt.old	2005-12-31 00:00:05.000000000 +0000
+++ /home/build/master/cache/broken_results.txt	2006-01-01 00:00:17.000000000 +0000
 <at>  <at>  -1,17 +1,17  <at>  <at> 
-Build status as of Sat Dec 31 00:00:02 2005
+Build status as of Sun Jan  1 00:00:01 2006

 Build counts:
 Tree         Total  Broken Panic 
 ccache       6      2      0     
-distcc       8      2      0     
-lorikeet-heimdal 14     8      0     
+distcc       9      2      0     
+lorikeet-heimdal 25     13     0     
 ppp          15     0      0     
-rsync        26     1      0     
+rsync        27     2      0     
 samba        1      0      0     
 samba-docs   0      0      0     
-samba4       30     25     0     
+samba4       30     15     2     
 samba_3_0    28     5      0     
-smb-build    21     2      0     
-talloc       7      4      0     
-tdb          7      2      0     
+smb-build    22     2      0     
+talloc       26     8      0     
+tdb          5      1      0     

(Continue reading)

jra | 1 Jan 2006 16:58
Picon
Favicon

svn commit: samba r12652 - in trunk/source/smbd: .

Author: jra
Date: 2006-01-01 15:58:50 +0000 (Sun, 01 Jan 2006)
New Revision: 12652

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

Log:
Patch from SATOH Fumiyasu <fumiyas <at> miraclelinux.com>
for bug #3348. Don't assume owning sticky bit
directory means write access allowed.
Jeremy.

Modified:
   trunk/source/smbd/posix_acls.c

Changeset:
Modified: trunk/source/smbd/posix_acls.c
===================================================================
--- trunk/source/smbd/posix_acls.c	2005-12-31 14:57:43 UTC (rev 12651)
+++ trunk/source/smbd/posix_acls.c	2006-01-01 15:58:50 UTC (rev 12652)
 <at>  <at>  -4149,8 +4149,13  <at>  <at> 
 		if(SMB_VFS_STAT(conn, fname, &sbuf_file) != 0) {
 			return False;
 		}
-		if (current_user.uid == sbuf_file.st_uid) {
-			return True;
+		/*
+		 * Patch from SATOH Fumiyasu <fumiyas <at> miraclelinux.com>
+		 * for bug #3348. Don't assume owning sticky bit
+		 * directory means write access allowed.
(Continue reading)

jra | 1 Jan 2006 16:59
Picon
Favicon

svn commit: samba r12653 - in branches/SAMBA_3_0/source/smbd: .

Author: jra
Date: 2006-01-01 15:59:22 +0000 (Sun, 01 Jan 2006)
New Revision: 12653

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

Log:
Patch from SATOH Fumiyasu <fumiyas <at> miraclelinux.com>
for bug #3348. Don't assume owning sticky bit
directory means write access allowed.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/smbd/posix_acls.c

Changeset:
Modified: branches/SAMBA_3_0/source/smbd/posix_acls.c
===================================================================
--- branches/SAMBA_3_0/source/smbd/posix_acls.c	2006-01-01 15:58:50 UTC (rev 12652)
+++ branches/SAMBA_3_0/source/smbd/posix_acls.c	2006-01-01 15:59:22 UTC (rev 12653)
 <at>  <at>  -4149,8 +4149,13  <at>  <at> 
 		if(SMB_VFS_STAT(conn, fname, &sbuf_file) != 0) {
 			return False;
 		}
-		if (current_user.uid == sbuf_file.st_uid) {
-			return True;
+		/*
+		 * Patch from SATOH Fumiyasu <fumiyas <at> miraclelinux.com>
+		 * for bug #3348. Don't assume owning sticky bit
+		 * directory means write access allowed.
(Continue reading)

vlendec | 1 Jan 2006 17:26
Picon
Favicon

svn commit: samba r12654 - in trunk/source/passdb: .

Author: vlendec
Date: 2006-01-01 16:26:48 +0000 (Sun, 01 Jan 2006)
New Revision: 12654

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

Log:
Add a debug message
Modified:
   trunk/source/passdb/lookup_sid.c

Changeset:
Modified: trunk/source/passdb/lookup_sid.c
===================================================================
--- trunk/source/passdb/lookup_sid.c	2006-01-01 15:59:22 UTC (rev 12653)
+++ trunk/source/passdb/lookup_sid.c	2006-01-01 16:26:48 UTC (rev 12654)
 <at>  <at>  -714,7 +714,11  <at>  <at> 
 	ret = True;

  done:
-	if (!ret) {
+	if (ret) {
+		DEBUG(10, ("Sid %s -> %s\\%s(%d)\n",
+			   sid_string_static(sid), domain->name,
+			   name->name, name->type));
+	} else {
 		DEBUG(10, ("failed to lookup sid %s\n",
 			   sid_string_static(sid)));
 	}

(Continue reading)

vlendec | 1 Jan 2006 17:37
Picon
Favicon

svn commit: samba r12655 - in trunk/source/rpcclient: .

Author: vlendec
Date: 2006-01-01 16:37:52 +0000 (Sun, 01 Jan 2006)
New Revision: 12655

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

Log:
Implement rpcclient deletealias
Modified:
   trunk/source/rpcclient/cmd_samr.c

Changeset:
Modified: trunk/source/rpcclient/cmd_samr.c
===================================================================
--- trunk/source/rpcclient/cmd_samr.c	2006-01-01 16:26:48 UTC (rev 12654)
+++ trunk/source/rpcclient/cmd_samr.c	2006-01-01 16:37:52 UTC (rev 12655)
 <at>  <at>  -1054,6 +1054,82  <at>  <at> 
 	return result;
 }

+/* Query delete an alias membership */
+
+static NTSTATUS cmd_samr_delete_alias(struct rpc_pipe_client *cli, 
+				      TALLOC_CTX *mem_ctx,
+				      int argc, const char **argv) 
+{
+	POLICY_HND connect_pol, domain_pol, alias_pol;
+	NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
+	uint32 alias_rid;
+	uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;
(Continue reading)

vlendec | 1 Jan 2006 18:10
Picon
Favicon

svn commit: samba r12656 - in trunk/source/passdb: .

Author: vlendec
Date: 2006-01-01 17:10:26 +0000 (Sun, 01 Jan 2006)
New Revision: 12656

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

Log:
Due to reconnects the LDAP * can change behind us. So the nice shortcuts I did
are invalid. But always typing ldap_state->smbldap_state->ldap_struct is a bit
silly I think. If nobody objects I'll change that to ld->smb_ld->ld.

Volker

Modified:
   trunk/source/passdb/pdb_ldap.c

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

vlendec | 1 Jan 2006 18:31
Picon
Favicon

svn commit: samba r12657 - in trunk/source/passdb: .

Author: vlendec
Date: 2006-01-01 17:31:01 +0000 (Sun, 01 Jan 2006)
New Revision: 12657

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

Log:
Implement ldapsam:trusted by leaving the function pointers to default when
it's not set.

Volker

Modified:
   trunk/source/passdb/pdb_ldap.c

Changeset:
Modified: trunk/source/passdb/pdb_ldap.c
===================================================================
--- trunk/source/passdb/pdb_ldap.c	2006-01-01 17:10:26 UTC (rev 12656)
+++ trunk/source/passdb/pdb_ldap.c	2006-01-01 17:31:01 UTC (rev 12657)
 <at>  <at>  -2405,11 +2405,6  <at>  <at> 
 	char *tmp;
 	NTSTATUS result = NT_STATUS_UNSUCCESSFUL;

-	if (!lp_parm_bool(-1, "ldapsam", "trusted", False))
-		return pdb_default_enum_group_members(methods, mem_ctx, group,
-						      pp_member_rids,
-						      p_num_members);
-
 	*pp_member_rids = NULL;
(Continue reading)

jelmer | 1 Jan 2006 18:32
Picon
Favicon

svn commit: samba r12658 - in branches/SAMBA_4_0/source: build/smb_build dsdb/samdb/ldb_modules lib/ldb/modules

Author: jelmer
Date: 2006-01-01 17:32:10 +0000 (Sun, 01 Jan 2006)
New Revision: 12658

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

Log:
Couple of fixes related to shared module builds.

Modified:
   branches/SAMBA_4_0/source/build/smb_build/smb_build_h.pm
   branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/objectguid.c
   branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/password_hash.c
   branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/proxy.c
   branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/rootdse.c
   branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/samba3sam.c
   branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/samldb.c
   branches/SAMBA_4_0/source/lib/ldb/modules/objectclass.c
   branches/SAMBA_4_0/source/lib/ldb/modules/operational.c
   branches/SAMBA_4_0/source/lib/ldb/modules/rdn_name.c
   branches/SAMBA_4_0/source/lib/ldb/modules/schema.c
   branches/SAMBA_4_0/source/lib/ldb/modules/skel.c

Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/smb_build_h.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/smb_build_h.pm	2006-01-01 17:31:01 UTC (rev 12657)
+++ branches/SAMBA_4_0/source/build/smb_build/smb_build_h.pm	2006-01-01 17:32:10 UTC (rev 12658)
 <at>  <at>  -54,13 +54,11  <at>  <at> 

(Continue reading)

jelmer | 1 Jan 2006 18:57
Picon
Favicon

svn commit: samba r12659 - in branches/SAMBA_4_0: .

Author: jelmer
Date: 2006-01-01 17:57:19 +0000 (Sun, 01 Jan 2006)
New Revision: 12659

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

Log:
Add some more information for potential users. Please supplement / amend 
where necessary.

Added:
   branches/SAMBA_4_0/README
   branches/SAMBA_4_0/STATUS
   branches/SAMBA_4_0/TODO
Modified:
   branches/SAMBA_4_0/NEWS

Changeset:
Modified: branches/SAMBA_4_0/NEWS
===================================================================
--- branches/SAMBA_4_0/NEWS	2006-01-01 17:32:10 UTC (rev 12658)
+++ branches/SAMBA_4_0/NEWS	2006-01-01 17:57:19 UTC (rev 12659)
 <at>  <at>  -22,8 +22,12  <at>  <at> 
 Samba now stores most of its persistent data in a LDAP-like database 
 called LDB (see ldb(7) for more info). 

+Built-in LDAP server
+====================
+FIXME
+
(Continue reading)

metze | 1 Jan 2006 19:02
Picon
Favicon

svn commit: samba r12660 - in branches/SAMBA_3_0/source/include: .

Author: metze
Date: 2006-01-01 18:02:50 +0000 (Sun, 01 Jan 2006)
New Revision: 12660

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

Log:
Happy New Year!

metze
Modified:
   branches/SAMBA_3_0/source/include/smb.h

Changeset:
Modified: branches/SAMBA_3_0/source/include/smb.h
===================================================================
--- branches/SAMBA_3_0/source/include/smb.h	2006-01-01 17:57:19 UTC (rev 12659)
+++ branches/SAMBA_3_0/source/include/smb.h	2006-01-01 18:02:50 UTC (rev 12660)
 <at>  <at>  -28,7 +28,7  <at>  <at> 
 #define _SMB_H

 /* logged when starting the various Samba daemons */
-#define COPYRIGHT_STARTUP_MESSAGE	"Copyright Andrew Tridgell and the Samba Team 1992-2005"
+#define COPYRIGHT_STARTUP_MESSAGE	"Copyright Andrew Tridgell and the Samba Team 1992-2006"

 
 #if defined(LARGE_SMB_OFF_T)


Gmane