gd | 1 Jul 2006 01:07
Picon
Favicon

svn commit: samba r16719 - branches/SAMBA_3_0/examples/misc trunk/examples/misc

Author: gd
Date: 2006-06-30 23:07:17 +0000 (Fri, 30 Jun 2006)
New Revision: 16719

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

Log:
Automatically chase referrals, support LDAP fast bind exended operation
and LDAP domain scope control.

Guenther

Modified:
   branches/SAMBA_3_0/examples/misc/adssearch.pl
   trunk/examples/misc/adssearch.pl

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

build | 1 Jul 2006 02:00
Picon
Favicon

Build status as of Sat Jul 1 00:00:02 2006

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

--- /home/build/master/cache/broken_results.txt.old	2006-06-30 00:00:04.000000000 +0000
+++ /home/build/master/cache/broken_results.txt	2006-07-01 00:00:17.000000000 +0000
 <at>  <at>  -1,18 +1,18  <at>  <at> 
-Build status as of Fri Jun 30 00:00:02 2006
+Build status as of Sat Jul  1 00:00:02 2006

 Build counts:
 Tree         Total  Broken Panic 
 SOC          0      0      0     
 ccache       32     4      0     
-distcc       34     2      0     
+distcc       34     4      0     
 lorikeet-heimdal 0      0      0     
 ppp          20     0      0     
-rsync        34     0      0     
-samba        31     6      0     
+rsync        35     0      0     
+samba        31     8      0     
 samba-docs   0      0      0     
-samba4       43     30     5     
+samba4       42     28     5     
 samba_3_0    40     12     0     
-smb-build    31     28     0     
-talloc       25     9      0     
-tdb          25     1      0     
+smb-build    31     29     0     
+talloc       25     11     0     
+tdb          25     3      0     
(Continue reading)

jra | 1 Jul 2006 03:03
Picon
Favicon

svn commit: samba r16720 - in branches/SAMBA_3_0/source/popt: .

Author: jra
Date: 2006-07-01 01:03:01 +0000 (Sat, 01 Jul 2006)
New Revision: 16720

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

Log:
Fix bug #3874 (warning) reported by Jason Mader.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/popt/popt.c

Changeset:
Modified: branches/SAMBA_3_0/source/popt/popt.c
===================================================================
--- branches/SAMBA_3_0/source/popt/popt.c	2006-06-30 23:07:17 UTC (rev 16719)
+++ branches/SAMBA_3_0/source/popt/popt.c	2006-07-01 01:03:01 UTC (rev 16720)
 <at>  <at>  -443,8 +443,12  <at>  <at> 
 #endif

     rc = execvp(argv[0], (char *const *)argv);
-
-    return POPT_ERROR_ERRNO;
+    /* notreached */
+    if (rc) {
+        return POPT_ERROR_ERRNO;
+    }
+ 
+    return 0;
(Continue reading)

jra | 1 Jul 2006 03:03
Picon
Favicon

svn commit: samba r16721 - in trunk/source/popt: .

Author: jra
Date: 2006-07-01 01:03:27 +0000 (Sat, 01 Jul 2006)
New Revision: 16721

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

Log:
Fix bug #3874 (warning) reported by Jason Mader.
Jeremy.

Modified:
   trunk/source/popt/popt.c

Changeset:
Modified: trunk/source/popt/popt.c
===================================================================
--- trunk/source/popt/popt.c	2006-07-01 01:03:01 UTC (rev 16720)
+++ trunk/source/popt/popt.c	2006-07-01 01:03:27 UTC (rev 16721)
 <at>  <at>  -443,8 +443,12  <at>  <at> 
 #endif

     rc = execvp(argv[0], (char *const *)argv);
-
-    return POPT_ERROR_ERRNO;
+    /* notreached */
+    if (rc) {
+        return POPT_ERROR_ERRNO;
+    }
+ 
+    return 0;
(Continue reading)

brad | 1 Jul 2006 04:15
Picon
Favicon

svn commit: samba r16722 - in branches/SOC/bnh/perl: .

Author: brad
Date: 2006-07-01 02:15:52 +0000 (Sat, 01 Jul 2006)
New Revision: 16722

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

Log:
Fixed error handling when working with the vix perl api.

Added functionality to host_connect() function to log into windows as a user.
This allows us to copy files and run commands on the windows vm.
The initial_setup.conf parameters GUEST_ADMIN_USERNAME and GUEST_ADMIN_PASSWORD specify this account.

Added function run_on_guest() to execute programs on the guest vm as the user mentioned above.

Added function copy_to_guest() which takes a local src directory or filename and remote directory as
parameters, and creates an associative list of local-remote file paths.
The function passes this list to copy_files_to_guest() to perform the actual copy to the guest vm.

With this update, these scripts can automatically setup a windows guest on vmware server with the only
preconfiguration being that vmware tools is installed and the guest os has an ip address configured.

I'll put together a zip file containing the set of scripts needed to make this happen as well as a README file a
little later.

Modified:
   branches/SOC/bnh/perl/initial_setup.conf
   branches/SOC/bnh/perl/vm_setup.pl

Changeset:
(Continue reading)

ab | 1 Jul 2006 09:38
Picon
Favicon
Gravatar

svn commit: samba r16723 - in branches/tmp/vl-messaging/source/lib: .

Author: ab
Date: 2006-07-01 07:38:26 +0000 (Sat, 01 Jul 2006)
New Revision: 16723

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

Log:
Remove talloc_steal() usage from vl-messaging code before merging with the trunk. Patch from Aleksey Fedoseev
Modified:
   branches/tmp/vl-messaging/source/lib/dbwrap_file.c
   branches/tmp/vl-messaging/source/lib/dbwrap_msg.c

Changeset:
Modified: branches/tmp/vl-messaging/source/lib/dbwrap_file.c
===================================================================
--- branches/tmp/vl-messaging/source/lib/dbwrap_file.c	2006-07-01 02:15:52 UTC (rev 16722)
+++ branches/tmp/vl-messaging/source/lib/dbwrap_file.c	2006-07-01 07:38:26 UTC (rev 16723)
 <at>  <at>  -314,7 +314,13  <at>  <at> 
 			}

 			data.dsize = rec->value.dsize;
-			data.dptr = talloc_steal(mem_ctx, rec->value.dptr);
+			data.dptr = talloc_memdup(mem_ctx, rec->value.dptr, rec->value.dsize);
+			if(data.dptr == NULL) {
+				DEBUG(0, ("talloc failed\n"));
+				TALLOC_FREE(rec);
+				TALLOC_FREE(mem_ctx);
+				return -1;				
+			}
 			TALLOC_FREE(rec);
(Continue reading)

metze | 1 Jul 2006 09:47
Picon
Favicon

svn commit: samba r16724 - in branches/SAMBA_4_0/source/ntvfs/posix: .

Author: metze
Date: 2006-07-01 07:47:49 +0000 (Sat, 01 Jul 2006)
New Revision: 16724

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

Log:
fix typo...

metze
Modified:
   branches/SAMBA_4_0/source/ntvfs/posix/pvfs_qfileinfo.c

Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/posix/pvfs_qfileinfo.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/posix/pvfs_qfileinfo.c	2006-07-01 07:38:26 UTC (rev 16723)
+++ branches/SAMBA_4_0/source/ntvfs/posix/pvfs_qfileinfo.c	2006-07-01 07:47:49 UTC (rev 16724)
 <at>  <at>  -409,8 +409,8  <at>  <at> 

 	case RAW_FILEINFO_SMB2_ALL_INFORMATION:
 		if (pvfs_delete_on_close_set(pvfs, h, NULL, NULL)) {
-			info->all_info.out.delete_pending = 1;
-			info->all_info.out.nlink--;
+			info->all_info2.out.delete_pending = 1;
+			info->all_info2.out.nlink--;
 		}
 		info->all_info2.out.position	= h->position;
 		info->all_info2.out.access_mask	= f->access_mask;

(Continue reading)

metze | 1 Jul 2006 09:49
Picon
Favicon

svn commit: samba r16725 - in branches/SAMBA_4_0/source/torture/smb2: .

Author: metze
Date: 2006-07-01 07:49:02 +0000 (Sat, 01 Jul 2006)
New Revision: 16725

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

Log:
don't ignore errors

metze
Modified:
   branches/SAMBA_4_0/source/torture/smb2/connect.c

Changeset:
Modified: branches/SAMBA_4_0/source/torture/smb2/connect.c
===================================================================
--- branches/SAMBA_4_0/source/torture/smb2/connect.c	2006-07-01 07:47:49 UTC (rev 16724)
+++ branches/SAMBA_4_0/source/torture/smb2/connect.c	2006-07-01 07:49:02 UTC (rev 16725)
 <at>  <at>  -203,9 +203,21  <at>  <at> 

 	h1 = torture_smb2_create(tree, "test9.dat");
 	h2 = torture_smb2_create(tree, "test9.dat");
-	torture_smb2_write(tree, h1);
-	torture_smb2_close(tree, h1);
-	torture_smb2_close(tree, h2);
+	status = torture_smb2_write(tree, h1);
+	if (!NT_STATUS_IS_OK(status)) {
+		printf("Write failed - %s\n", nt_errstr(status));
+		return False;
+	}
(Continue reading)

ab | 1 Jul 2006 10:11
Picon
Favicon
Gravatar

svn commit: samba r16726 - in branches/tmp/vl-messaging: examples/misc source source/auth source/client source/include source/lib source/libads source/libmsrpc source/libndr source/libsmb source/locking source/nmbd source/nsswitch source/param source/passdb source/popt source/printing source/python source/registry source/rpc_client source/rpc_parse source/rpc_server source/rpcclient source/smbd source/utils source/web

Author: ab
Date: 2006-07-01 08:11:22 +0000 (Sat, 01 Jul 2006)
New Revision: 16726

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

Log:
Merge with trunk -r 16558:16723
Modified:
   branches/tmp/vl-messaging/examples/misc/adssearch.pl
   branches/tmp/vl-messaging/source/Makefile.in
   branches/tmp/vl-messaging/source/auth/auth_ntlmssp.c
   branches/tmp/vl-messaging/source/auth/auth_util.c
   branches/tmp/vl-messaging/source/client/client.c
   branches/tmp/vl-messaging/source/client/smbctool.c
   branches/tmp/vl-messaging/source/client/smbspool.c
   branches/tmp/vl-messaging/source/configure.in
   branches/tmp/vl-messaging/source/include/passdb.h
   branches/tmp/vl-messaging/source/include/rpc_samr.h
   branches/tmp/vl-messaging/source/include/rpc_srvsvc.h
   branches/tmp/vl-messaging/source/include/session.h
   branches/tmp/vl-messaging/source/include/smb.h
   branches/tmp/vl-messaging/source/include/socket_wrapper.h
   branches/tmp/vl-messaging/source/include/talloc.h
   branches/tmp/vl-messaging/source/lib/interface.c
   branches/tmp/vl-messaging/source/lib/smbldap.c
   branches/tmp/vl-messaging/source/lib/talloc.c
   branches/tmp/vl-messaging/source/lib/talloctort.c
   branches/tmp/vl-messaging/source/lib/util_reg.c
   branches/tmp/vl-messaging/source/lib/util_str.c
(Continue reading)

vlendec | 1 Jul 2006 12:55
Picon
Favicon

svn commit: samba r16727 - in trunk/source/nsswitch: .

Author: vlendec
Date: 2006-07-01 10:55:15 +0000 (Sat, 01 Jul 2006)
New Revision: 16727

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

Log:
Get rid of some warnings of the AIX compiler.

Volker

Modified:
   trunk/source/nsswitch/winbindd_async.c

Changeset:
Modified: trunk/source/nsswitch/winbindd_async.c
===================================================================
--- trunk/source/nsswitch/winbindd_async.c	2006-07-01 08:11:22 UTC (rev 16726)
+++ trunk/source/nsswitch/winbindd_async.c	2006-07-01 10:55:15 UTC (rev 16727)
 <at>  <at>  -116,7 +116,7  <at>  <at> 
 				   struct winbindd_response *response,
 				   void *c, void *private_data)
 {
-	void (*cont)(void *priv, BOOL succ) = c;
+	void (*cont)(void *priv, BOOL succ) = (void (*)(void *, BOOL))c;

 	if (!success) {
 		DEBUG(5, ("Could not trigger idmap_set_mapping\n"));
 <at>  <at>  -149,7 +149,7  <at>  <at> 
 	sid_to_string(request.data.dual_idmapset.sid, sid);
(Continue reading)


Gmane