Build status as of Wed May 26 06:00:04 2010

2010-05-25 Thread build
URL: http://build.samba.org/

--- /home/build/master/cache/broken_results.txt.old 2010-05-25 
00:00:05.0 -0600
+++ /home/build/master/cache/broken_results.txt 2010-05-26 00:00:09.0 
-0600
@@ -1,9 +1,9 @@
-Build status as of Tue May 25 06:00:04 2010
+Build status as of Wed May 26 06:00:04 2010
 
 Build counts:
 Tree Total  Broken Panic 
 build_farm   0  0  0 
-ccache   30 11 0 
+ccache   30 13 0 
 ldb  30 17 0 
 libreplace   30 11 0 
 lorikeet 0  0  0 


[SCM] CTDB repository - branch 1.0.112 updated - ctdb-1.0.111-89-gcb9456b

2010-05-25 Thread Ronnie Sahlberg
The branch, 1.0.112 has been updated
   via  cb9456b3b68c428c85dff29dfa4c040147ecacd6 (commit)
  from  ce7301315fcb7a6878eb4cea444c2772c13c2cb0 (commit)

http://gitweb.samba.org/?p=sahlberg/ctdb.git;a=shortlog;h=1.0.112


- Log -
commit cb9456b3b68c428c85dff29dfa4c040147ecacd6
Author: Ronnie Sahlberg 
Date:   Wed May 26 13:38:12 2010 +1000

From rusty
Fix a SEGV that could happend when deleting a public ip.

BZ62783

---

Summary of changes:
 server/ctdb_takeover.c |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/server/ctdb_takeover.c b/server/ctdb_takeover.c
index 0288dd2..ae6c064 100644
--- a/server/ctdb_takeover.c
+++ b/server/ctdb_takeover.c
@@ -1653,7 +1653,9 @@ static void ctdb_tickle_sentenced_connections(struct 
event_context *ev, struct t
  */
 static int ctdb_killtcp_destructor(struct ctdb_kill_tcp *killtcp)
 {
-   killtcp->vnn->killtcp = NULL;
+   if (killtcp->vnn) {
+   killtcp->vnn->killtcp = NULL;
+   }
return 0;
 }
 
@@ -2143,6 +2145,9 @@ int32_t ctdb_control_del_public_address(struct 
ctdb_context *ctdb, TDB_DATA inda
 vnn->iface, 
 talloc_strdup(mem_ctx, 
ctdb_addr_to_str(&vnn->public_address)),
 vnn->public_netmask_bits);
+   if (vnn->killtcp) {
+   vnn->killtcp->vnn = NULL;
+   }
talloc_free(vnn);
if (ret != 0) {
return -1;


-- 
CTDB repository


[SCM] CTDB repository - branch master updated - ctdb-1.0.114-106-g53df35a

2010-05-25 Thread Ronnie Sahlberg
The branch, master has been updated
   via  53df35aff1e10201a38931bbb82fb266a38892c0 (commit)
   via  bdd250b9afdd1060cfd1e2b0f0a5a567150bb380 (commit)
  from  3587df065669972a631ba08918df37536c9cb633 (commit)

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


- Log -
commit 53df35aff1e10201a38931bbb82fb266a38892c0
Author: Ronnie Sahlberg 
Date:   Wed May 26 13:55:19 2010 +1000

add a gplv3 boilerplate to the example application for libctdb

commit bdd250b9afdd1060cfd1e2b0f0a5a567150bb380
Author: Ronnie Sahlberg 
Date:   Wed May 26 13:43:28 2010 +1000

check if vnn is a valid pointer before dereferencing it

based on rustys patch for bz62783

---

Summary of changes:
 libctdb/tst.c  |   19 +++
 server/ctdb_takeover.c |4 +++-
 2 files changed, 22 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/libctdb/tst.c b/libctdb/tst.c
index 8ab631d..32dc3a0 100644
--- a/libctdb/tst.c
+++ b/libctdb/tst.c
@@ -1,3 +1,22 @@
+/*
+ * Example program to demonstrate the libctdb api
+ *
+ * This program needs to be linked with libtdb.
+ * (libtdb and libtdb-devel packages)
+ *
+ * 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see .
+ */
 #include 
 #include 
 #include 
diff --git a/server/ctdb_takeover.c b/server/ctdb_takeover.c
index b18c030..e80e303 100644
--- a/server/ctdb_takeover.c
+++ b/server/ctdb_takeover.c
@@ -2300,7 +2300,9 @@ static void ctdb_tickle_sentenced_connections(struct 
event_context *ev, struct t
  */
 static int ctdb_killtcp_destructor(struct ctdb_kill_tcp *killtcp)
 {
-   killtcp->vnn->killtcp = NULL;
+   if (killtcp->vnn) {
+   killtcp->vnn->killtcp = NULL;
+   }
return 0;
 }
 


-- 
CTDB repository


[SCM] CTDB repository - branch master updated - ctdb-1.0.114-104-g3587df0

2010-05-25 Thread Ronnie Sahlberg
The branch, master has been updated
   via  3587df065669972a631ba08918df37536c9cb633 (commit)
  from  93f1622cd4106fb1a2acbe643cbb2b3dc9fd0103 (commit)

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


- Log -
commit 3587df065669972a631ba08918df37536c9cb633
Author: Ronnie Sahlberg 
Date:   Wed May 26 10:01:37 2010 +1000

move the header files and libctdb.a out into a separate ctdb-devel rpm

---

Summary of changes:
 packaging/RPM/ctdb.spec.in |   21 -
 1 files changed, 16 insertions(+), 5 deletions(-)


Changeset truncated at 500 lines:

diff --git a/packaging/RPM/ctdb.spec.in b/packaging/RPM/ctdb.spec.in
index b1ae95c..7389213 100644
--- a/packaging/RPM/ctdb.spec.in
+++ b/packaging/RPM/ctdb.spec.in
@@ -1,15 +1,17 @@
 %define initdir %{_sysconfdir}/init.d
-
+Name: ctdb
 Summary: Clustered TDB
 Vendor: Samba Team
 Packager: Samba Team 
-Name: ctdb
 Version: 1.9
 Release: 1GITHASH
 Epoch: 0
 License: GNU GPL version 3
 Group: System Environment/Daemons
 URL: http://ctdb.samba.org/
+%package devel
+Summary: CTDB developmnet libraries
+Group: Development
 
 Source: ctdb-%{version}.tar.gz
 
@@ -25,9 +27,14 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-root
 %description
 ctdb is the clustered database used by samba
 
+%description devel
+development libraries for ctdb
+
 
 ###
 
+
+
 %prep
 %setup -q
 # setup the init script and sysconfig file
@@ -121,13 +128,17 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man1/ctdb.1.gz
 %{_mandir}/man1/ctdbd.1.gz
 %{_mandir}/man1/onnode.1.gz
+%{_libdir}/pkgconfig/ctdb.pc
+
+%{_docdir}/ctdb/tests/bin/ctdb_transaction
+
+%files devel
+%defattr(-,root,root)
 %{_includedir}/ctdb.h
 %{_includedir}/ctdb_client.h
 %{_includedir}/ctdb_protocol.h
 %{_includedir}/ctdb_private.h
-%{_libdir}/pkgconfig/ctdb.pc
-
-%{_docdir}/ctdb/tests/bin/ctdb_transaction
+%{_libdir}/libctdb.a
 
 %changelog
 * Tue May 25 2010 : Version 1.9


-- 
CTDB repository


[SCM] CTDB repository - branch master updated - ctdb-1.0.114-103-g93f1622

2010-05-25 Thread Ronnie Sahlberg
The branch, master has been updated
   via  93f1622cd4106fb1a2acbe643cbb2b3dc9fd0103 (commit)
   via  76acb97ebcfc378e98767113a81e413969917bb1 (commit)
   via  d41b802250ddc0a89581eb6285edfd66bdc7a78a (commit)
   via  e553da6a060c9cd2514bdb888cf0e50d35572b88 (commit)
   via  d58b575e15015c5ef9493ab3ad3e8657c5787e2c (commit)
   via  dce2244e8ac6617c335cfcd721c3795071b9f2b2 (commit)
   via  7411b2b577a16f85ad6913e1bfccce7ea260a613 (commit)
   via  3727165f0d206999d2cfc2800ff8868640868c7c (commit)
   via  ebe4dd724338c156423cfdcc10a75b68c2084cde (commit)
   via  1c2f08f104cf6b5f97998a3b9a426a4c5dfd4752 (commit)
   via  f36e891c00c63d5b9dfbaddacff86d9da72d3bb7 (commit)
   via  f02526486680db1473bdf10328e8f62a2590c745 (commit)
   via  732cf6ead4aa2fbefc2b81328171f52c8d935341 (commit)
   via  86e1f93df856f9627182ed0e18bfcff6866c0954 (commit)
   via  09f05cbfc883e5aac33d3781b163cde178ece4cf (commit)
   via  4bba6b8cd47b352f98d41f9f06258d5ac3c9adef (commit)
  from  8e9fd36e4619b7cc7bb6f7f7416d13e4c00a296a (commit)

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


- Log -
commit 93f1622cd4106fb1a2acbe643cbb2b3dc9fd0103
Author: Ronnie Sahlberg 
Date:   Wed May 26 09:01:26 2010 +1000

make install to install libctdb.a

commit 76acb97ebcfc378e98767113a81e413969917bb1
Author: Ronnie Sahlberg 
Date:   Wed May 26 08:56:46 2010 +1000

make sure we build libctdb for "make all"

commit d41b802250ddc0a89581eb6285edfd66bdc7a78a
Merge: e553da6a060c9cd2514bdb888cf0e50d35572b88 
3727165f0d206999d2cfc2800ff8868640868c7c
Author: Ronnie Sahlberg 
Date:   Tue May 25 12:48:49 2010 +1000

Merge commit 'rusty/libctdb2'

commit e553da6a060c9cd2514bdb888cf0e50d35572b88
Author: Ronnie Sahlberg 
Date:   Tue May 25 12:47:15 2010 +1000

new version 1.9

commit d58b575e15015c5ef9493ab3ad3e8657c5787e2c
Author: Ronnie Sahlberg 
Date:   Mon May 24 12:33:47 2010 +1000

Add monitoring of quorum and make the node UNHEALTHY when quarum is lost

commit dce2244e8ac6617c335cfcd721c3795071b9f2b2
Author: Ronnie Sahlberg 
Date:   Mon May 24 09:51:52 2010 +1000

in 62.cnfs, lines in /etc/exports can have hte exports quoted,
so strip off any initial " on the exports line

commit 7411b2b577a16f85ad6913e1bfccce7ea260a613
Author: Ronnie Sahlberg 
Date:   Fri May 21 14:25:47 2010 +1000

It was possible for ->recovery_mode to get out of sync with the new three 
db priorities in such a way that
->recovery_mode was set to normal   but database priorities leven2 or 3 was 
still set to frozen.

causing the recovery daemon to fail to detect that a recovery was needed to 
recover access to the database.

BZ63951

commit 3727165f0d206999d2cfc2800ff8868640868c7c
Author: Rusty Russell 
Date:   Mon May 24 13:52:17 2010 +0930

libctdb: tweak interface for readrecordlock

Previously we could hang in poll with the callback pending (since we
fake it): explicitly call it immediately.

Note: I experienced corruption using DLIST_ADD_END (ctdb->pnn was blatted
when adding to the message_handler list).  I switched them all to DLIST_ADD,
but maybe I'm using it wrong?

commit ebe4dd724338c156423cfdcc10a75b68c2084cde
Author: Rusty Russell 
Date:   Mon May 24 13:17:36 2010 +0930

libctdb: uniform callbacks, _recv functions to pull out data.

This is a bit tricky for those cases where we need to do multiple or
zero I/Os (eg. attachdb and readrecordlock), but works well for the
simple cases.

commit 1c2f08f104cf6b5f97998a3b9a426a4c5dfd4752
Author: Rusty Russell 
Date:   Fri May 21 12:13:10 2010 +0930

patch libctdb-single-callback.patch

commit f36e891c00c63d5b9dfbaddacff86d9da72d3bb7
Author: Rusty Russell 
Date:   Thu May 20 16:16:04 2010 +0930

tst.c: update to Ronnie's latest

This provides a slightly more comprehensive test of the library.

commit f02526486680db1473bdf10328e8f62a2590c745
Author: Rusty Russell 
Date:   Thu May 20 15:57:40 2010 +0930

libctdb: Ronnie's build changes, so we actually build libctdb with make.

Signed-off-by: Rusty Russell 

commit 732cf6ead4aa2fbefc2b81328171f52c8d935341
Author: Rusty Russell 
Date:   Fri May 21 12:07:41 2010 +0930

libctdb: first cut, supports getrecmaster only

This is a completely standalone library using only ctdb_protocol.h.

Signed-off-by: Rusty Russell 

Header from folded patch 'libctdb-message-handling.patch':

libctdb: add message handling to libctdb.

Now clients can send and receive ctdb messages.

commit 86e1f93df856f9627182ed0e18bfcff6866c0954
Author: Rusty Russell 
Date:   Thu May 20 16:07:30 2010 +0930

libctdb: API changes from Ronnie's version

These simplifications mostly came up due to the implementation.

o Rename ctdb_context to ctdb_connection.
   We already have a ctdb_c

[SCM] Samba Shared Repository - branch master updated

2010-05-25 Thread Kai Blin
The branch, master has been updated
   via  9e194cd... s3-waf: Check for additional options on *xattr
   via  5a023e7... s3-waf: Add darwin to the host_os-specific checks
   via  b2546ee... s3-waf: Don't hardcode the name of the awk executable in 
wscript_build
  from  475531c... Standardize debug messages for read and write.

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


- Log -
commit 9e194cd673a0d0a56cd064bab38cbf30b468999d
Author: Kai Blin 
Date:   Wed May 26 00:16:10 2010 +0200

s3-waf: Check for additional options on *xattr

commit 5a023e73f7b1e788b49a05318b8de264aca085f0
Author: Kai Blin 
Date:   Tue May 25 23:57:41 2010 +0200

s3-waf: Add darwin to the host_os-specific checks

commit b2546ee5571e644d3cb784f33517bf9f28c134d7
Author: Kai Blin 
Date:   Tue May 25 23:53:04 2010 +0200

s3-waf: Don't hardcode the name of the awk executable in wscript_build

---

Summary of changes:
 source3/wscript   |   10 ++
 source3/wscript_build |2 --
 2 files changed, 10 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/wscript b/source3/wscript
index 08044ec..166f7c5 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -323,6 +323,14 @@ updwtmp updwtmpx utimensat vsyslog _write __write __xstat
 conf.env.build_winbind = True
 conf.DEFINE('WITH_WINBIND', '1')
 
+conf.find_program('awk', var='AWK')
+
+# Darwin has extra options to xattr-family functions
+conf.CHECK_CODE('getxattr(0, 0, 0, 0, 0, 0);',
+'XATTR_ADD_OPT',
+msg="Checking whether xattr interface takes additional 
options",
+headers='sys/types.h attr/xattr.h sys/xattr.h')
+
 #FIXME: Should just be set when krb5 and ldap requirements are fulfilled
 if Options.options.with_ads:
 conf.DEFINE('WITH_ADS', '1')
@@ -438,6 +446,8 @@ krb5_get_credentials_for_user krb5_get_host_realm 
krb5_free_host_realm''',
 elif host_os.rfind('qnx') > -1:
 conf.DEFINE('QNX', '1')
 conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
+elif (host_os.rfind('darwin') > -1):
+conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
 # FIXME: Add more checks here.
 else:
 print "Unknown host_os '%s', please report this to 
samba-techni...@samba.org" % host_os
diff --git a/source3/wscript_build b/source3/wscript_build
index 72ff748..2c74bf1 100644
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -773,8 +773,6 @@ EVTLOGADM_SRC = '''${EVTLOGADM_SRC0}
 
 LIBS='ICONV'
 
-bld.env.AWK = 'gawk'
-
 bld.SAMBA_GENERATOR('build_options',
 source='include/config.h script/mkbuildoptions.awk',
 target='smbd/build_options.c',


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch master updated

2010-05-25 Thread Jeremy Allison
The branch, master has been updated
   via  475531c... Standardize debug messages for read and write.
  from  aa51fa0... s3:fix the waf build after registry changes.

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


- Log -
commit 475531c9bb6c2d4b522a77d0ced09a9775704085
Author: Jeremy Allison 
Date:   Tue May 25 11:39:46 2010 -0700

Standardize debug messages for read and write.

Jeremy.

---

Summary of changes:
 source3/smbd/smb2_read.c  |6 ++
 source3/smbd/smb2_write.c |8 +---
 2 files changed, 11 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/smb2_read.c b/source3/smbd/smb2_read.c
index d4c38d6..b29da4a 100644
--- a/source3/smbd/smb2_read.c
+++ b/source3/smbd/smb2_read.c
@@ -310,6 +310,12 @@ static struct tevent_req *smbd_smb2_read_send(TALLOC_CTX 
*mem_ctx,
return tevent_req_post(req, ev);
}
 
+   DEBUG(3,("smbd_smb2_read: fnum=[%d/%s] length=%lu offset=%lu 
read=%lu\n",
+   fsp->fnum, fsp_str_dbg(fsp),
+   (unsigned long)in_length,
+   (unsigned long)in_offset,
+   (unsigned long)nread));
+
state->out_data.length = nread;
state->out_remaining = 0;
tevent_req_done(req);
diff --git a/source3/smbd/smb2_write.c b/source3/smbd/smb2_write.c
index ae98c81..c3ac816 100644
--- a/source3/smbd/smb2_write.c
+++ b/source3/smbd/smb2_write.c
@@ -287,9 +287,11 @@ static struct tevent_req *smbd_smb2_write_send(TALLOC_CTX 
*mem_ctx,
return tevent_req_post(req, ev);
}
 
-   DEBUG(3,("smbd_smb2_write: fnum=[%d/%s] length=%d offset=%d wrote=%d\n",
-   fsp->fnum, fsp_str_dbg(fsp), (int)in_data.length,
-   (int)in_offset, (int)nwritten));
+   DEBUG(3,("smbd_smb2_write: fnum=[%d/%s] length=%lu offset=%lu 
wrote=%lu\n",
+   fsp->fnum, fsp_str_dbg(fsp),
+   (unsigned long)in_data.length,
+   (unsigned long)in_offset,
+   (unsigned long)nwritten));
 
if (in_flags & 0x0001) {
write_through = true;


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch master updated

2010-05-25 Thread Michael Adam
The branch, master has been updated
   via  aa51fa0... s3:fix the waf build after registry changes.
  from  f12028a... s3-net: fix a "dereferencing type-punned pointer will 
break strict-aliasing rules" warning.

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


- Log -
commit aa51fa0ce34cc36ad757bb5ab1450c37631bb082
Author: Michael Adam 
Date:   Tue May 25 17:28:05 2010 +0200

s3:fix the waf build after registry changes.

---

Summary of changes:
 source3/wscript_build |9 +
 1 files changed, 5 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/wscript_build b/source3/wscript_build
index 636091e..72ff748 100644
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -304,7 +304,7 @@ LIBMSRPC_GEN_SRC = '''../librpc/gen_ndr/cli_lsa.c
 # registry-related objects
 #
 UTIL_REG_SRC = '''../libcli/registry/util_reg.c'''
-UTIL_REG_API_SRC = '''lib/util_reg_api.c'''
+REG_UTIL_MARSHALLING_OBJ = '''registry/reg_util_marshalling.c'''
 
 REG_INIT_BASIC_SRC = '''registry/reg_init_basic.c'''
 REG_INIT_SMBCONF_SRC = '''registry/reg_init_smbconf.c'''
@@ -332,15 +332,16 @@ REG_BASE_SRC = '''registry/reg_api.c
registry/reg_cachehook.c
${REGFIO_SRC}
${REGSRCS_SRC}
-   registry/reg_util.c
-   ${UTIL_REG_API_SRC}
+   registry/reg_util_internal.c
+  ${REG_UTIL_MARSHALLING_OBJ}
lib/util_nttoken.c
${REG_BACKENDS_BASE_SRC}
${REG_INIT_BASIC_SRC}'''
 
 REG_SMBCONF_SRC = '''${REG_BASE_SRC}
   ${REG_BACKENDS_SMBCONF_SRC}
-  ${REG_INIT_SMBCONF_SRC}'''
+  ${REG_INIT_SMBCONF_SRC}
+ registry/reg_util_token.c'''
 
 REG_FULL_SRC = '''${REG_SMBCONF_SRC}
${REG_BACKENDS_EXTRA_SRC}


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch v3-5-test updated

2010-05-25 Thread Karolin Seeger
The branch, v3-5-test has been updated
   via  4c5a1b6... Fix bug #7448 - smbd crash when sambaLMPassword and 
sambaNTPassword entries missing from ldap.
  from  144b973... s3-selftest: deal with changed samba3 test names.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -
commit 4c5a1b6b17b5575ea943eaf0472453222579365a
Author: Roel van Meer 
Date:   Fri May 21 14:17:17 2010 -0700

Fix bug #7448 - smbd crash when sambaLMPassword and sambaNTPassword entries 
missing from ldap.

Protect SMBsesskeygen_ntv1() from a NULL pointer.

---

Summary of changes:
 source3/auth/auth_sam.c |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/auth/auth_sam.c b/source3/auth/auth_sam.c
index bd99b3a..3ac4cdb 100644
--- a/source3/auth/auth_sam.c
+++ b/source3/auth/auth_sam.c
@@ -78,6 +78,9 @@ static NTSTATUS sam_password_ok(const struct auth_context 
*auth_context,
}
 
if (client_lm_hash || client_nt_hash) {
+   if (!nt_pw) {
+   return NT_STATUS_WRONG_PASSWORD;
+   }
*user_sess_key = data_blob_talloc(mem_ctx, NULL, 16);
if (!user_sess_key->data) {
return NT_STATUS_NO_MEMORY;


-- 
Samba Shared Repository


[SCM] Samba Website Repository - branch master updated

2010-05-25 Thread John Terpstra
The branch, master has been updated
   via  6498456... Added entry at Gavin Henry request - duplicate of 
Scotland entry.
  from  4b5dd94... Reduce the padding after the page header.

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


- Log -
commit 6498456906bd5750259d1e5c88d35679821798bf
Author: John H Terpstra 
Date:   Tue May 25 10:12:11 2010 -0500

Added entry at Gavin Henry request - duplicate of Scotland entry.

---

Summary of changes:
 support/scotland.html |1 -
 support/uk.html   |   22 ++
 2 files changed, 22 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/scotland.html b/support/scotland.html
index c4d2d46..d7c957e 100644
--- a/support/scotland.html
+++ b/support/scotland.html
@@ -24,7 +24,6 @@ Consultancy and support services for Samba, specialising in 
Samba with LDAP as w
 Specialty samba capabilities: LDAP, specialising in OpenLDAP as we are part of 
the OpenLDAP project
 
 Special Notes: Bank of hours support, monthly contracts, emergency support 
supporting one off credit card payments.
-
 
 
 
diff --git a/support/uk.html b/support/uk.html
index 7775575..6f89506 100644
--- a/support/uk.html
+++ b/support/uk.html
@@ -86,5 +86,27 @@ We specialise in Open Source software. We provide 
consultancy services, training
 Specialty samba capabilities: Enterprise deployment, Integration with policy 
based desktops, Integration with clients from XP to Windows 7, up to 24/7 
technical support.
 
 
+
+
+Suretec Systems Ltd.
+
+Suretec Systems Ltd.
+Unit 18, The James Gregory Centre, 
+Bridge of Don, Aberdeen
+Aberdeenshire
+
+http://www.suretecsystems.com
++44 1224 279484
+nquir...@suretecsystems.com
+Gavin Henry
+
+
+Consultancy and support services for Samba, specialising in Samba with LDAP as 
we are part of the OpenLDAP project.
+
+Specialty samba capabilities: LDAP, specialising in OpenLDAP as we are part of 
the OpenLDAP project
+
+Special Notes: Bank of hours support, monthly contracts, emergency support 
supporting one off credit card payments.
+
+
 
 


-- 
Samba Website Repository


[SCM] Samba Shared Repository - branch master updated

2010-05-25 Thread Günther Deschner
The branch, master has been updated
   via  f12028a... s3-net: fix a "dereferencing type-punned pointer will 
break strict-aliasing rules" warning.
   via  8e41f2e... s3-waf: very simple start on getting krb5 build to work.
  from  abf2764... s4:torture/rpc/samr.c: Fix the "ValidatePassword" test

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


- Log -
commit f12028a3fd5c64bc8e13996cb9a18a19ec0929e0
Author: Günther Deschner 
Date:   Tue May 25 12:43:00 2010 +0200

s3-net: fix a "dereferencing type-punned pointer will break strict-aliasing 
rules" warning.

Guenther

commit 8e41f2e66a6be425e161ee2ec1cea386332a6186
Author: Günther Deschner 
Date:   Tue May 25 12:27:02 2010 +0200

s3-waf: very simple start on getting krb5 build to work.

Guenther

---

Summary of changes:
 source3/utils/net_ads.c |4 ++--
 source3/wscript |2 ++
 2 files changed, 4 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c
index 8945d99..9665a3a 100644
--- a/source3/utils/net_ads.c
+++ b/source3/utils/net_ads.c
@@ -541,7 +541,7 @@ static int ads_user_info(struct net_context *c, int argc, 
const char **argv)
char *escaped_user;
struct dom_sid primary_group_sid;
uint32_t group_rid;
-   enum SID_NAME_USE type;
+   enum wbcSidType type;
 
if (argc < 1 || c->display_usage) {
return net_ads_user_usage(c, argc, argv);
@@ -596,7 +596,7 @@ static int ads_user_info(struct net_context *c, int argc, 
const char **argv)
wbc_status = wbcLookupSid((struct wbcDomainSid *)&primary_group_sid,
  NULL, /* don't look up domain */
  &primary_group,
- (enum wbcSidType *) &type);
+ &type);
if (!WBC_ERROR_IS_OK(wbc_status)) {
d_fprintf(stderr, "wbcLookupSid: %s\n",
  wbcErrorString(wbc_status));
diff --git a/source3/wscript b/source3/wscript
index a58c524..08044ec 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -417,6 +417,8 @@ krb5_get_credentials_for_user krb5_get_host_realm 
krb5_free_host_realm''',
 conf.CHECK_DECLS('''krb5_get_credentials_for_user
 krb5_auth_con_set_req_cksumtype''',
 headers='krb5.h', always=True)
+conf.CHECK_VARIABLE('AP_OPTS_USE_SUBKEY', headers='krb5.h')
+
 else:
 conf.SET_TARGET_TYPE('krb5', 'EMPTY')
 conf.SET_TARGET_TYPE('gssapi', 'EMPTY')


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch v3-5-test updated

2010-05-25 Thread Karolin Seeger
The branch, v3-5-test has been updated
   via  144b973... s3-selftest: deal with changed samba3 test names.
  from  70098b7... Fix what looks like a cut-and-paste error in our 
read_negTokenInit() function.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -
commit 144b973cc4d0afa4df6ada9243922206437b5fa1
Author: Günther Deschner 
Date:   Tue May 25 13:09:46 2010 +0200

s3-selftest: deal with changed samba3 test names.

Guenther

---

Summary of changes:
 source3/script/tests/test_posix_s3.sh |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/script/tests/test_posix_s3.sh 
b/source3/script/tests/test_posix_s3.sh
index 84072f9..79cb3f6 100755
--- a/source3/script/tests/test_posix_s3.sh
+++ b/source3/script/tests/test_posix_s3.sh
@@ -37,9 +37,9 @@ raw="$raw RAW-SAMBA3HIDE RAW-SAMBA3BADPATH 
RAW-SFILEINFO-RENAME"
 raw="$raw RAW-SAMBA3CASEINSENSITIVE RAW-SAMBA3POSIXTIMEDLOCK"
 raw="$raw RAW-SAMBA3ROOTDIRFID"
 
-rpc="RPC-AUTHCONTEXT RPC-BINDSAMBA3 RPC-SAMBA3-SRVSVC RPC-SAMBA3-SHARESEC"
+rpc="RPC-AUTHCONTEXT RPC-SAMBA3-BIND RPC-SAMBA3-SRVSVC RPC-SAMBA3-SHARESEC"
 rpc="$rpc RPC-SAMBA3-SPOOLSS RPC-SAMBA3-WKSSVC RPC-SAMBA3-WINREG"
-rpc="$rpc RPC-NETLOGSAMBA3 RPC-SAMBA3SESSIONKEY RPC-SAMBA3-GETUSERNAME"
+rpc="$rpc RPC-SAMBA3-NETLOGON RPC-SAMBA3-SESSIONKEY RPC-SAMBA3-GETUSERNAME"
 rpc="$rpc RPC-SVCCTL RPC-SPOOLSS RPC-SPOOLSS-WIN RPC-NTSVCS"
 rpc="$rpc RPC-LSA-GETUSER RPC-LSA-LOOKUPSIDS RPC-LSA-LOOKUPNAMES"
 rpc="$rpc RPC-LSA-PRIVILEGES "


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch master updated

2010-05-25 Thread Matthias Dieter Wallnöfer
The branch, master has been updated
   via  abf2764... s4:torture/rpc/samr.c: Fix the "ValidatePassword" test
  from  af2cbaa... s3:registry: add C for substantial changes to reg_objects

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


- Log -
commit abf27643616a0ad2c0477869c2146d852ee57026
Author: Matthias Dieter Wallnöfer 
Date:   Tue May 25 11:21:46 2010 +0200

s4:torture/rpc/samr.c: Fix the "ValidatePassword" test

It was failing randomly due to an uninitialised "status" variable.

---

Summary of changes:
 source4/torture/rpc/samr.c |9 ++---
 1 files changed, 6 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c
index c44c4ef..b87cac5 100644
--- a/source4/torture/rpc/samr.c
+++ b/source4/torture/rpc/samr.c
@@ -7916,12 +7916,15 @@ static bool test_samr_ValidatePassword(struct 
dcerpc_pipe *p,
 
for (i=0; passwords[i]; i++) {
req.req3.password.string = passwords[i];
-   torture_assert_ntstatus_ok(tctx, 
dcerpc_samr_ValidatePassword_r(b, tctx, &r),
-   "ValidatePassword failed");
+
+   status = dcerpc_samr_ValidatePassword_r(b, tctx, &r);
if (NT_STATUS_EQUAL(status, 
NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE)) {
torture_skip(tctx, "ValidatePassword not supported by 
server\n");
}
-   torture_assert_ntstatus_ok(tctx, r.out.result, 
"samr_ValidatePassword");
+   torture_assert_ntstatus_ok(tctx, status,
+  "samr_ValidatePassword failed");
+   torture_assert_ntstatus_ok(tctx, r.out.result,
+  "samr_ValidatePassword failed");
torture_comment(tctx, "Server %s password '%s' with code %i\n",

repp->ctr3.status==SAMR_VALIDATION_STATUS_SUCCESS?"allowed":"refused",
req.req3.password.string, repp->ctr3.status);


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch v3-5-test updated

2010-05-25 Thread Karolin Seeger
The branch, v3-5-test has been updated
   via  70098b7... Fix what looks like a cut-and-paste error in our 
read_negTokenInit() function.
  from  920ffe4... Fix bug #7410 - samba sends "raw" inode number as 
uniqueid with unix extensions.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -
commit 70098b751c10e632738f687976e6ef5e5fb2fc7b
Author: Jeremy Allison 
Date:   Thu May 20 14:30:44 2010 -0700

Fix what looks like a cut-and-paste error in our read_negTokenInit() 
function.

We should never be calling asn1_push_XXX functions inside an asn1
reading function. Change asn1_push_tag() -> asn1_start_tag() and
asn1_pop_tag() -> asn1_end_tag(). This allows us to connect to a
NetApp filer at the Microsoft plugfest.

Andrew PLEASE CHECK !

Jeremy.

Fix bug #7449 (spnego data mis-parsed - returns incorrect mechListMIC 
string).

---

Summary of changes:
 libcli/auth/spnego_parse.c |8 
 1 files changed, 4 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/libcli/auth/spnego_parse.c b/libcli/auth/spnego_parse.c
index 3f7047b..86b083d 100644
--- a/libcli/auth/spnego_parse.c
+++ b/libcli/auth/spnego_parse.c
@@ -88,11 +88,11 @@ static bool read_negTokenInit(struct asn1_data *asn1, 
TALLOC_CTX *mem_ctx,
/* RFC 2478 says we have an Octet String here,
   but W2k sends something different... */
char *mechListMIC;
-   asn1_push_tag(asn1, ASN1_SEQUENCE(0));
-   asn1_push_tag(asn1, ASN1_CONTEXT(0));
+   asn1_start_tag(asn1, ASN1_SEQUENCE(0));
+   asn1_start_tag(asn1, ASN1_CONTEXT(0));
asn1_read_GeneralString(asn1, mem_ctx, 
&mechListMIC);
-   asn1_pop_tag(asn1);
-   asn1_pop_tag(asn1);
+   asn1_end_tag(asn1);
+   asn1_end_tag(asn1);
 
token->targetPrincipal = mechListMIC;
}


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch master updated

2010-05-25 Thread Michael Adam
The branch, master has been updated
   via  af2cbaa... s3:registry: add C for substantial changes to reg_objects
   via  80293b8... s3:registry:reg_objects: Remove use of uint{8,16,32} in 
favour of C99 types
   via  0b446e0... s3:registry: add comment header block to registry.h
   via  0fe1ff9... s3:registry: move reg_objects.h to registry/ and use it 
only where needed
   via  552e505... s3:registry: move non-reg_objects definitions from 
reg_objects.h to registry.h
   via  75e691a... s3:registry: hide definition of regval_ctr and 
regval_blob in reg_objects.c
   via  0e8e5d5... s3:net rpc registry: use regval_ctr_init() instead of 
direct allocation
   via  bf65ff5... s3:profiles: use regval_ctr_init() instead of direct 
allocation
   via  7b2f5f2... s3:rpcclient:spoolss: use regval_ctr/blob accessor 
functions.
   via  112eddf... s3:net_rpc_printer: use regval_blob/ctr accessor 
functions
   via  c4de07a... s3:net rpc printer: fix use of a possibly uninitialized 
variable
   via  b5d0fdd... s3:nt_printing: use regval_ctr_init().
   via  dcf2cc2... s3:srv_ntsvcs: use regval_ctr/blob accessor functions
   via  1be8f5f... s3:services_db: use regval_ctr_init() instead of direct 
allocation
   via  53ba74e... s3:libads:use regval_ctr/blob accessor functions in 
ldap_printer.c
   via  5fbf935... s3:registry: use regval_ctr/blob accessor functoin in 
reg_eventlog.c
   via  a71dac4... s3:registry: user regval_ctr/blob accessor functions in 
reg_backend_db.c
   via  0d20053... s3:registry: use regval_ctr/blob accessor functions in 
reg_api.c
   via  987514d... s3:registry:reg_objects: add regval_ctr_set_seqnum()
   via  6b33132... s3:registry:reg_objects: add regval_ctr_get_seqnum()
   via  e0d5bcc... s3:registry:reg_objects: add regval_ctr_init()
   via  97846ed... s3:registry: move definition of registry_hook to 
reg_init_full.c - it's only user
   via  e829b42... s3:registry: extract registry_pull/push_value prototypes 
into own header
   via  36b74e0... s3:registry: rename lib/util_reg_api.c to 
registry/reg_util_marshalling.c
   via  773255b... s3:registry: rename reg_util.{c,h} to 
reg_util_internal.{c,h}
   via  f305373... s3:registry: move prototype 
registry_create_admin_token() to new header reg_util_token.h
   via  e3f7fab... s3:registry: move registry_create_admin_token() to new 
reg_util_token.c
   via  847a19d... s3:registry: extract reg_eventlog prototypes to header 
of their own
   via  5a92d88... s3:registry: extract reg_perfcount prototypes into 
header of their own.
   via  b94267a... s3:registry: extraxt the reg_dispatcher prototypes into 
their own header.
   via  d335f29... s3:registry: extract the reg_backend_db prototypes into 
their own header.
   via  9ccf663... s3:registry: adapt callers of regval_ctr_addvalue to 
uint8 * instead of char *
   via  70a8179... s3:registry: fix regval_ctr_addvalue() to take data as 
uint8 *, not char *.
   via  f7f9ce3... s3:registry: fix data_p arg of regval_compose to be 
uint8 * instead of char *
   via  4ae77b2... s3:registry: extract the reg_util prototypes into their 
own header.
   via  c682fd6... s3:registry: remove superfluous comments from registry.h
   via  a4efda9... s3:registry: extract the reg_util_legacy prototypes into 
their own header.
   via  14a0250... s3:registry: extract the reg_cachehook prototypes into 
their own header.
   via  9c5d7c7... s3:registry: protect registry.h from multiple inclusion
   via  d59d9df... s3:registry: add C to reg_cachehook, confessing 
considerable changes in 2008
  from  8eed328... s3:fix configure after change "add Werror_FLAGS for 
IBM's xlc"

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


- Log -
commit af2cbaa700f8a56228131061ad10a1d219df1d83
Author: Michael Adam 
Date:   Tue May 25 10:53:17 2010 +0200

s3:registry: add C for substantial changes to reg_objects

commit 80293b80670d5106d1aa8822c2de081f7caecb64
Author: Michael Adam 
Date:   Tue May 25 10:32:51 2010 +0200

s3:registry:reg_objects: Remove use of uint{8,16,32} in favour of C99 types

commit 0b446e0842a9e79dcc290aa0841e56e0b0d2c495
Author: Michael Adam 
Date:   Tue May 25 08:54:29 2010 +0200

s3:registry: add comment header block to registry.h

commit 0fe1ff99a1aa6858ec0f1cfb1130b801238fc8e2
Author: Michael Adam 
Date:   Tue May 25 01:00:37 2010 +0200

s3:registry: move reg_objects.h to registry/ and use it only where needed

Every place outside of registry/ where this is used, should probably
be changed to use pure reg_api.c code.

commit 552e505cee966e7f734fb6bc8f5991bb5b73ba32
Author: Michael Adam 
Date:   Tue May 25 00:42:50 2010 +0200

s3:registry: move non-reg_objects definitions from reg_objects.h to 
registry.h

commit 75e691ae6baeac88878e2c8107ceb7e057fd4c5b
Author

[SCM] Samba Shared Repository - branch master updated

2010-05-25 Thread Michael Adam
The branch, master has been updated
   via  8eed328... s3:fix configure after change "add Werror_FLAGS for 
IBM's xlc"
  from  f634450... s3: fix the configure run

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


- Log -
commit 8eed328cb5b9585fc6c20cfc94d64568cd30b055
Author: Michael Adam 
Date:   Tue May 25 09:49:04 2010 +0200

s3:fix configure after change "add Werror_FLAGS for IBM's xlc"

For me, 24b3725407f1a67e13a7646d2e3f26ed1e4735ff broke configure.
The fix in f634450b67d2a084c41a63c0e94eb47adb90e101 is not complete yet.
After staring at the change a bit, tt seems to me that the
code inserted was just misplaced by one line.

Michael

---

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


Changeset truncated at 500 lines:

diff --git a/source3/configure.in b/source3/configure.in
index fa2e287..ff510fb 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -310,6 +310,7 @@ if test x"$samba_cv_HAVE_qhalt" = x"yes"; then
 fi
 fi
 fi
+fi
 
 
 # check if the compiler can handle negative enum values


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch v3-5-test updated

2010-05-25 Thread Karolin Seeger
The branch, v3-5-test has been updated
   via  920ffe4... Fix bug #7410 - samba sends "raw" inode number as 
uniqueid with unix extensions.
  from  167c082... s3: Fix a typo found by ITPFS oota 

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -
commit 920ffe49290cacd30d9bc582c1c3fee38308c260
Author: Jeremy Allison 
Date:   Thu May 20 11:36:47 2010 -0700

Fix bug #7410 - samba sends "raw" inode number as uniqueid with unix 
extensions.

Move to a consistent get_FileIndex() function for all inode returns,
that checks if st_dev on the file is identical to the top directory
dev_t of the exported share, and if so uses the raw 64-bit inode
number. If it isn't (we've traversed a mount point) - return what
we used to do for Windows which is the concatination of the bottom
32-bits of the inode with the 32-bit device number. We can get more
creative with this over time (hashing?) if we want as now all inode returns 
go
through this single function.

Jeremy.

---

Summary of changes:
 source3/include/proto.h|1 +
 source3/include/smb.h  |3 +++
 source3/smbd/service.c |1 +
 source3/smbd/smb2_create.c |   11 ---
 source3/smbd/trans2.c  |   33 ++---
 5 files changed, 39 insertions(+), 10 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/include/proto.h b/source3/include/proto.h
index f30939a..04065b0 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -7050,6 +7050,7 @@ int sys_statvfs(const char *path, vfs_statvfs_struct 
*statbuf);
 /* The following definitions come from smbd/trans2.c  */
 
 uint64_t smb_roundup(connection_struct *conn, uint64_t val);
+uint64_t get_FileIndex(connection_struct *conn, const SMB_STRUCT_STAT *psbuf);
 NTSTATUS get_ea_value(TALLOC_CTX *mem_ctx, connection_struct *conn,
  files_struct *fsp, const char *fname,
  const char *ea_name, struct ea_struct *pea);
diff --git a/source3/include/smb.h b/source3/include/smb.h
index bc7a90d..202f9d7 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -607,6 +607,9 @@ typedef struct connection_struct {
 
/* Semantics provided by the underlying filesystem. */
int fs_capabilities;
+   /* Device number of the directory of the share mount.
+  Used to ensure unique FileIndex returns. */
+   SMB_DEV_T base_share_dev;
 
name_compare_entry *hide_list; /* Per-share list of files to return as 
hidden. */
name_compare_entry *veto_list; /* Per-share list of files to veto 
(never show). */
diff --git a/source3/smbd/service.c b/source3/smbd/service.c
index 25e0eb1..bc2cdaf 100644
--- a/source3/smbd/service.c
+++ b/source3/smbd/service.c
@@ -1033,6 +1033,7 @@ connection_struct *make_connection_snum(struct 
smbd_server_connection *sconn,
*pstatus = NT_STATUS_BAD_NETWORK_NAME;
goto err_root_exit;
}
+   conn->base_share_dev = smb_fname_cpath->st.st_ex_dev;
 
string_set(&conn->origpath,conn->connectpath);
 
diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c
index 3cf8b18..3e0d180 100644
--- a/source3/smbd/smb2_create.c
+++ b/source3/smbd/smb2_create.c
@@ -651,13 +651,18 @@ static struct tevent_req 
*smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
 
if (qfid) {
uint8_t p[32];
+   uint64_t file_index = get_FileIndex(result->conn,
+   &result->fsp_name->st);
DATA_BLOB blob = data_blob_const(p, sizeof(p));
 
ZERO_STRUCT(p);
 
-   /* TODO: maybe use result->file_id */
-   SIVAL(p, 0, result->fsp_name->st.st_ex_ino);/* 
FileIndexLow */
-   SIVAL(p, 4, result->fsp_name->st.st_ex_dev);/* 
FileIndexHigh */
+   /* From conversations with Microsoft engineers at
+  the MS plugfest. The first 8 bytes are the "volume 
index"
+  == inode, the second 8 bytes are the "volume id",
+  == dev. This will be updated in the SMB2 doc. */
+   SBVAL(p, 0, file_index);
+   SIVAL(p, 8, result->fsp_name->st.st_ex_dev);/* 
FileIndexHigh */
 
status = smb2_create_blob_add(state, &out_context_blobs,
  SMB2_CREATE_TAG_QFID,
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index 963103c..fb4d46b 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -57,6 +57,23 @@ uint64_t smb_roundup(connection_struct *conn, uint64_t val)
return val;
 }
 
+/

[SCM] Samba Shared Repository - branch master updated

2010-05-25 Thread Björn Jacke
The branch, master has been updated
   via  f634450... s3: fix the configure run
  from  ff0872d... s3:configure: turn "error warnings" into errors

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


- Log -
commit f634450b67d2a084c41a63c0e94eb47adb90e101
Author: Björn Jacke 
Date:   Tue May 25 09:43:57 2010 +0200

s3: fix the configure run

---

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


Changeset truncated at 500 lines:

diff --git a/source3/configure.in b/source3/configure.in
index a97720c..fa2e287 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -296,7 +296,6 @@ AC_CACHE_CHECK([that the C compiler understands 
-errwarn],samba_cv_HAVE_errwarn,

samba_cv_HAVE_errwarn=yes,samba_cv_HAVE_errwarn=no,samba_cv_HAVE_errwarn=cross)])
 if test x"$samba_cv_HAVE_errwarn" = x"yes"; then
Werror_FLAGS="-errwarn=%all"
-fi
 else
 dnl Check if the C compiler understands -qhalt (IBM)
 AC_CACHE_CHECK([that the C compiler understands -qhalt],samba_cv_HAVE_errwarn, 
[


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch v3-5-test updated

2010-05-25 Thread Karolin Seeger
The branch, v3-5-test has been updated
   via  167c082... s3: Fix a typo found by ITPFS oota 
  from  0c20af0... Fix bug #7188 - Logic error in check of total_data for 
call_trans2mkdir()

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -
commit 167c082c1eb18f8360d094c96cbcef4ce48d935b
Author: Volker Lendecke 
Date:   Mon May 24 11:23:42 2010 +0200

s3: Fix a typo found by ITPFS oota 

Thanks!
(cherry picked from commit d12768cc0ae52d95ffd83070948c83af4ce8704b)

---

Summary of changes:
 docs-xml/manpages-3/net.8.xml |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/docs-xml/manpages-3/net.8.xml b/docs-xml/manpages-3/net.8.xml
index 51971c8..f7fafcc 100644
--- a/docs-xml/manpages-3/net.8.xml
+++ b/docs-xml/manpages-3/net.8.xml
@@ -1799,7 +1799,7 @@ This example would connect to a computer named XP as the 
local administrator usi
 
 
 Execute a shell command under a global lock. This might be useful to define the
-order in which serveral shell commands will be executed. The locking 
information
+order in which several shell commands will be executed. The locking information
 is stored in a file called g_lock.tdb. In setups with CTDB
 running, the locking information will be available on all cluster nodes.
 


-- 
Samba Shared Repository