mat/samba.git
14 years agoUpdate URL in README.cifs-utils
Jeff Layton [Fri, 2 Apr 2010 10:26:09 +0000 (06:26 -0400)]
Update URL in README.cifs-utils

Signed-off-by: Jeff Layton <jlayton@redhat.com>
14 years agos4-rpc: fixed a talloc loop in continue_ntlmssp_connection()
Andrew Tridgell [Fri, 2 Apr 2010 08:08:24 +0000 (19:08 +1100)]
s4-rpc: fixed a talloc loop in continue_ntlmssp_connection()

We were creating a memory loop which caused havoc when the connection
was torn down.

14 years agos3: Fix a comment
Volker Lendecke [Fri, 2 Apr 2010 08:11:12 +0000 (10:11 +0200)]
s3: Fix a comment

14 years agos4-python: added --debuglevel to our python scripts
Andrew Tridgell [Fri, 2 Apr 2010 07:31:30 +0000 (18:31 +1100)]
s4-python: added --debuglevel to our python scripts

very useful for debugging our cPython extensions, such as dcerpc
modules

14 years agos4-pyglue: setup talloc logging in python modules
Andrew Tridgell [Fri, 2 Apr 2010 07:21:14 +0000 (18:21 +1100)]
s4-pyglue: setup talloc logging in python modules

14 years agopyrpc: do the pipe connect on a real memory context
Andrew Tridgell [Fri, 2 Apr 2010 07:20:51 +0000 (18:20 +1100)]
pyrpc: do the pipe connect on a real memory context

14 years agodebug: enable talloc logging
Andrew Tridgell [Fri, 2 Apr 2010 07:19:47 +0000 (18:19 +1100)]
debug: enable talloc logging

we want to ensure talloc warnings are printed in the log

14 years agotalloc: a useful bit of debug code
Andrew Tridgell [Fri, 2 Apr 2010 07:18:53 +0000 (18:18 +1100)]
talloc: a useful bit of debug code

this is useful when tracking down talloc loops. It is probably too
expensive to have on by default.

14 years agotalloc: add a define for TALLOC_MAX_DEPTH
Andrew Tridgell [Fri, 2 Apr 2010 07:17:52 +0000 (18:17 +1100)]
talloc: add a define for TALLOC_MAX_DEPTH

Thanks to the suggestion from simo

14 years agotalloc: change talloc minor version to 2.0.2
Andrew Tridgell [Fri, 2 Apr 2010 01:02:55 +0000 (12:02 +1100)]
talloc: change talloc minor version to 2.0.2

this has the talloc_is_parent() bugfix

14 years agotalloc: limit the depth that talloc will go for talloc_is_parent()
Andrew Tridgell [Fri, 2 Apr 2010 00:59:49 +0000 (11:59 +1100)]
talloc: limit the depth that talloc will go for talloc_is_parent()

We have a bug in the dcerpc registry code that can cause a talloc loop
that chews unlimited CPU because of talloc_is_parent() during a
talloc_free()

14 years agoMove initialize_async_io_handler() inside of smbd/aio.c.
Jeremy Allison [Thu, 1 Apr 2010 23:47:59 +0000 (16:47 -0700)]
Move initialize_async_io_handler() inside of smbd/aio.c.

Call from actual aio read or write. No reason to call this globally on startup.

Jeremy.

14 years agoAdd torture test for bug 7310 - DOS attribute inconsistency with MS Office
Jeremy Allison [Thu, 1 Apr 2010 22:01:43 +0000 (15:01 -0700)]
Add torture test for bug 7310 - DOS attribute inconsistency with MS Office

Ensure we don't regress.

Jeremy.

14 years agos3:winbindd: remove unused variables
Stefan Metzmacher [Thu, 1 Apr 2010 16:10:47 +0000 (18:10 +0200)]
s3:winbindd: remove unused variables

metze

14 years agos3:winbindd: fix problems with SIGCHLD handling (bug #7317)
Stefan Metzmacher [Thu, 1 Apr 2010 14:23:06 +0000 (16:23 +0200)]
s3:winbindd: fix problems with SIGCHLD handling (bug #7317)

The main problem is that we call CatchChild() within the
parent winbindd, which overwrites the signal handler
that was registered by winbindd_setup_sig_chld_handler().

That means winbindd_sig_chld_handler() and winbind_child_died()
are never triggered when a winbindd domain child dies.
As a result will get "broken pipe" for all requests to that domain.

To reduce the risk of similar bugs in future we call
CatchChild() in winbindd_reinit_after_fork() now.

We also use a full winbindd_reinit_after_fork() in the
cache validation child now instead instead of just resetting
the SIGCHLD handler by hand. This will also fix possible
tdb problems on systems without pread/pwrite and disabled mmap
as we now correctly reopen the tdb handle for the child.

metze

14 years agos3: Ensure NULL termination before printing in winbindd_pam_logoff
Volker Lendecke [Thu, 1 Apr 2010 14:32:44 +0000 (16:32 +0200)]
s3: Ensure NULL termination before printing in winbindd_pam_logoff

14 years agos4-python: Ensure __init__ exists in samba.external, or importing will fail.
Jelmer Vernooij [Thu, 1 Apr 2010 13:32:32 +0000 (15:32 +0200)]
s4-python: Ensure __init__ exists in samba.external, or importing will fail.

14 years agos4-python: Install external packages to a different directory but import into
Jelmer Vernooij [Thu, 1 Apr 2010 13:20:25 +0000 (15:20 +0200)]
s4-python: Install external packages to a different directory but import into
the normal namespace when the system doesn't have it available.

14 years agos3: Fix a typo in winbindd_pam_logoff
Volker Lendecke [Thu, 1 Apr 2010 13:13:37 +0000 (15:13 +0200)]
s3: Fix a typo in winbindd_pam_logoff

14 years agosubunitrun: Find testtools and subunit when they're not provided by the
Jelmer Vernooij [Thu, 1 Apr 2010 12:47:54 +0000 (14:47 +0200)]
subunitrun: Find testtools and subunit when they're not provided by the
system.

14 years agos3:winbindd: correctly invalidate the cached connection
Stefan Metzmacher [Wed, 31 Mar 2010 18:54:18 +0000 (20:54 +0200)]
s3:winbindd: correctly invalidate the cached connection

There're maybe additional TCP connection for ncacn_ip_tcp.

metze

14 years agos3:winbindd: only set child_domain in the child
Stefan Metzmacher [Wed, 31 Mar 2010 18:20:26 +0000 (20:20 +0200)]
s3:winbindd: only set child_domain in the child

metze

14 years agos3:winbindd: make sure we don't try rpc requests against unaccessable domains
Stefan Metzmacher [Thu, 1 Apr 2010 07:29:38 +0000 (09:29 +0200)]
s3:winbindd: make sure we don't try rpc requests against unaccessable domains

This makes sure we don't crash while trying to dereference domain->conn.cli->foo
while trying to establish a rpc connection to the server.

metze

14 years agos3: fix a typo in winbind_client_response_written
Volker Lendecke [Thu, 1 Apr 2010 10:54:31 +0000 (12:54 +0200)]
s3: fix a typo in winbind_client_response_written

14 years agoMake smbd_lock_socket/smbd_unlock_socket recursive with a ref_count.
Jeremy Allison [Thu, 1 Apr 2010 00:40:30 +0000 (17:40 -0700)]
Make smbd_lock_socket/smbd_unlock_socket recursive with a ref_count.

As these always call exit_server, make that part of the function.
Use _internal functions for the echo client.

Metze please check !

Jeremy.

14 years agos3: Merge French translation for pam_winbind after review
Christian PERRIER [Wed, 31 Mar 2010 21:02:32 +0000 (23:02 +0200)]
s3: Merge French translation for pam_winbind after review

- some wording improvements ("user" is not "usager" but "utilisateur"
- gender neutrality changes:
  by rewording:  ("vous n'êtes pas autorisé" --> "vous n'avez pas
  l'autorisation")
- bad translation corrections: "valide"-->"valable" (a very common
  false friend)
- and several changes we consider to be improvements, mostly because
  they are common wording in computing translations in French

Signed-off-by: Lars Müller <lars@samba.org>
14 years agos3: Fix an error message in winbindd_pam_chauthtok()
Volker Lendecke [Wed, 31 Mar 2010 20:06:23 +0000 (22:06 +0200)]
s3: Fix an error message in winbindd_pam_chauthtok()

14 years agos3: Ensure null termination in winbindd_pam_chauthtok()
Volker Lendecke [Wed, 31 Mar 2010 20:05:02 +0000 (22:05 +0200)]
s3: Ensure null termination in winbindd_pam_chauthtok()

14 years agos3: Make check_info3_in_group static
Volker Lendecke [Wed, 31 Mar 2010 18:57:01 +0000 (20:57 +0200)]
s3: Make check_info3_in_group static

14 years agos3-winbind: Make append_auth_data() static
Volker Lendecke [Mon, 29 Mar 2010 13:44:38 +0000 (15:44 +0200)]
s3-winbind: Make append_auth_data() static

14 years agoFix bug 7310 - DOS attribute inconsistency with MS Office
Jeremy Allison [Wed, 31 Mar 2010 05:16:37 +0000 (22:16 -0700)]
Fix bug 7310 - DOS attribute inconsistency with MS Office

On rename we need to set the archive bit on the renamed file.

Jeremy

14 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jeremy Allison [Wed, 31 Mar 2010 17:01:03 +0000 (10:01 -0700)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

14 years agos3:smbd: handle SMB2 in deadtime_fn() and avoid disconnecting non idle clients
Stefan Metzmacher [Wed, 31 Mar 2010 02:54:41 +0000 (04:54 +0200)]
s3:smbd: handle SMB2 in deadtime_fn() and avoid disconnecting non idle clients

metze

14 years agoselftest: Update sys.path before attempting to import external modules.
Jelmer Vernooij [Wed, 31 Mar 2010 02:52:13 +0000 (04:52 +0200)]
selftest: Update sys.path before attempting to import external modules.

14 years agoselftest: Make sure format-subunit and filter-subunit can find testtools/subunit.
Jelmer Vernooij [Wed, 31 Mar 2010 02:51:05 +0000 (04:51 +0200)]
selftest: Make sure format-subunit and filter-subunit can find testtools/subunit.

14 years agosubunit: Include remainder of bindings and metadata.
Jelmer Vernooij [Wed, 31 Mar 2010 02:24:04 +0000 (04:24 +0200)]
subunit: Include remainder of bindings and metadata.

14 years agotesttools: Fix included testtools, for systems that don't have it.
Jelmer Vernooij [Wed, 31 Mar 2010 02:19:36 +0000 (04:19 +0200)]
testtools: Fix included testtools, for systems that don't have it.

14 years agos4-python: Install external included packages only if they're not present on the...
Jelmer Vernooij [Wed, 31 Mar 2010 01:56:24 +0000 (03:56 +0200)]
s4-python: Install external included packages only if they're not present on the system.

14 years agoinstallmisc: Support DESTDIR for Python directories.
Jelmer Vernooij [Wed, 31 Mar 2010 01:47:10 +0000 (03:47 +0200)]
installmisc: Support DESTDIR for Python directories.

14 years agoformat-subunit: Hide reason if it is None.
Jelmer Vernooij [Wed, 31 Mar 2010 01:34:50 +0000 (03:34 +0200)]
format-subunit: Hide reason if it is None.

14 years agoformat-subunit: Don't show reason at all if it is None.
Jelmer Vernooij [Wed, 31 Mar 2010 01:32:23 +0000 (03:32 +0200)]
format-subunit: Don't show reason at all if it is None.

14 years agoPut testtools directly under lib/ to make it easier to install from Samba 4.
Jelmer Vernooij [Wed, 31 Mar 2010 01:19:18 +0000 (03:19 +0200)]
Put testtools directly under lib/ to make it easier to install from Samba 4.

14 years agosamba_external: Simplify script to find missing external packages; include subunit...
Jelmer Vernooij [Wed, 31 Mar 2010 01:15:24 +0000 (03:15 +0200)]
samba_external: Simplify script to find missing external packages; include subunit and testtools as well.

14 years agosmbtorture: Report number of available tests in a testsuite using subunit.
Jelmer Vernooij [Wed, 31 Mar 2010 00:57:47 +0000 (02:57 +0200)]
smbtorture: Report number of available tests in a testsuite using subunit.

14 years agosubunit: Also import copies of filters and perl module.
Jelmer Vernooij [Tue, 30 Mar 2010 13:03:41 +0000 (15:03 +0200)]
subunit: Also import copies of filters and perl module.

14 years agoselftest: Use boolean types in Python.
Jelmer Vernooij [Tue, 30 Mar 2010 12:44:37 +0000 (14:44 +0200)]
selftest: Use boolean types in Python.

14 years agoselftest: Use standard subunit command for progress reporting.
Jelmer Vernooij [Tue, 30 Mar 2010 12:42:23 +0000 (14:42 +0200)]
selftest: Use standard subunit command for progress reporting.

14 years agoselftest: Support parsing progress in format-subunit/filter-subunit.
Jelmer Vernooij [Tue, 30 Mar 2010 12:36:25 +0000 (14:36 +0200)]
selftest: Support parsing progress in format-subunit/filter-subunit.

14 years agoselftest: Use standard subunit commands for progress reporting.
Jelmer Vernooij [Tue, 30 Mar 2010 12:30:08 +0000 (14:30 +0200)]
selftest: Use standard subunit commands for progress reporting.

14 years agos4-selftest: Fix xfail for base.delete.
Jelmer Vernooij [Tue, 30 Mar 2010 12:15:38 +0000 (14:15 +0200)]
s4-selftest: Fix xfail for base.delete.

14 years agoselftest: Use absolute tests names in knownfail.
Jelmer Vernooij [Tue, 30 Mar 2010 12:02:36 +0000 (14:02 +0200)]
selftest: Use absolute tests names in knownfail.

14 years agoselftest: Convert filter-subunit to Python so the subunit Python module
Jelmer Vernooij [Tue, 30 Mar 2010 10:46:26 +0000 (12:46 +0200)]
selftest: Convert filter-subunit to Python so the subunit Python module
can be used later.

14 years agoformat-subunit: Avoid printing backtrace on Ctrl-C.
Jelmer Vernooij [Tue, 30 Mar 2010 00:39:50 +0000 (02:39 +0200)]
format-subunit: Avoid printing backtrace on Ctrl-C.

14 years agoSecond part of fix for bug #6494 - Incorrect FileStatus returned in NT_CREATE_ANDX.
Jeremy Allison [Tue, 30 Mar 2010 23:54:43 +0000 (16:54 -0700)]
Second part of fix for bug #6494 - Incorrect FileStatus returned in NT_CREATE_ANDX.

Ensure we do this in nttrans create too.

Jeremy.

14 years agos4-torture: removed more uses of typeof()
Andrew Tridgell [Tue, 30 Mar 2010 22:18:09 +0000 (09:18 +1100)]
s4-torture: removed more uses of typeof()

not portable

14 years agos4-torture: using typeof() is not portable
Andrew Tridgell [Tue, 30 Mar 2010 22:00:54 +0000 (09:00 +1100)]
s4-torture: using typeof() is not portable

this failed to compile on solaris8 with cc

14 years agoFix for bug #7233 - print fails with jobs >4GB from Win7 clients.
Jeremy Allison [Tue, 30 Mar 2010 22:27:26 +0000 (15:27 -0700)]
Fix for bug #7233 - print fails with jobs >4GB from Win7 clients.

Contains for by Sebastian Kloska <oncaphillis@snafu.de>. Submitter
confirms this fixes the problem.

Jeremy.

14 years agos4:lsa implement lsaRSetForestTrustInformation
Simo Sorce [Fri, 26 Feb 2010 02:41:09 +0000 (21:41 -0500)]
s4:lsa implement lsaRSetForestTrustInformation

14 years agoIf the timeout has been set to zero, don't register an end time.
Jeremy Allison [Tue, 30 Mar 2010 20:45:53 +0000 (13:45 -0700)]
If the timeout has been set to zero, don't register an end time.

The caller doesn't want a timeout.

Jeremy.

14 years agowbclient/wbclient.c - fix a typo
Matthias Dieter Wallnöfer [Tue, 30 Mar 2010 19:57:52 +0000 (21:57 +0200)]
wbclient/wbclient.c - fix a typo

14 years agolibcli/nbt/dns_hosts_file.c - change "ULONG_MAX" into "UINT32_MAX"
Matthias Dieter Wallnöfer [Tue, 30 Mar 2010 17:08:57 +0000 (19:08 +0200)]
libcli/nbt/dns_hosts_file.c - change "ULONG_MAX" into "UINT32_MAX"

This fits better since the variable which is tested is of type "uint32_t".

14 years agos4:gensec_gssapi.c - make sure that "GSS_C_DELEG_POLICY_FLAG" is available
Matthias Dieter Wallnöfer [Tue, 30 Mar 2010 15:42:51 +0000 (17:42 +0200)]
s4:gensec_gssapi.c - make sure that "GSS_C_DELEG_POLICY_FLAG" is available

FreeBSD 7.2 needs this.

14 years agos4:torture/basic/denytest.c - use "typeof" in a better supported syntax
Matthias Dieter Wallnöfer [Tue, 30 Mar 2010 15:24:15 +0000 (17:24 +0200)]
s4:torture/basic/denytest.c - use "typeof" in a better supported syntax

This should make it compatible with the SUN Studio C Compiler.

14 years agos4:registry/tests/diff.c - try to make also this test compatible with big-endian...
Matthias Dieter Wallnöfer [Tue, 30 Mar 2010 11:02:27 +0000 (13:02 +0200)]
s4:registry/tests/diff.c - try to make also this test compatible with big-endian platforms

14 years agos4:registry/tests/hive.c - make the test compatible with big-endian platforms
Matthias Dieter Wallnöfer [Tue, 30 Mar 2010 10:46:56 +0000 (12:46 +0200)]
s4:registry/tests/hive.c - make the test compatible with big-endian platforms

14 years agoreplace: allow memmem() with an empty string to return NULL
Andrew Tridgell [Tue, 30 Mar 2010 07:12:46 +0000 (18:12 +1100)]
replace: allow memmem() with an empty string to return NULL

This is how FreeBSD behaves. We don't rely on it returning the string
in Samba.

14 years agos3:libads: retry with signing after getting LDAP_STRONG_AUTH_REQUIRED
Stefan Metzmacher [Tue, 30 Mar 2010 07:50:09 +0000 (09:50 +0200)]
s3:libads: retry with signing after getting LDAP_STRONG_AUTH_REQUIRED

If server requires LDAP signing we're getting LDAP_STRONG_AUTH_REQUIRED,
if "client ldap sasl wrapping = plain", instead of failing we now
autoupgrade to "client ldap sasl wrapping = sign" for the given connection.

metze

14 years agoselftest: reason may be None
Andrew Tridgell [Tue, 30 Mar 2010 05:27:09 +0000 (16:27 +1100)]
selftest: reason may be None

jelmer, please check

14 years agos4-test: oLschema2ldif doesn't take -H any more
Andrew Tridgell [Tue, 30 Mar 2010 04:36:17 +0000 (15:36 +1100)]
s4-test: oLschema2ldif doesn't take -H any more

14 years agos4-heimdal: use the HAVE_INET_* functions from libreplace
Andrew Tridgell [Tue, 30 Mar 2010 01:08:52 +0000 (12:08 +1100)]
s4-heimdal: use the HAVE_INET_* functions from libreplace

14 years agos4-heimdal: for use of libreplace setegid and seteuid
Andrew Tridgell [Mon, 29 Mar 2010 13:07:10 +0000 (00:07 +1100)]
s4-heimdal: for use of libreplace setegid and seteuid

14 years agocharset: look for the codepages in the right place
Andrew Tridgell [Tue, 30 Mar 2010 00:55:10 +0000 (11:55 +1100)]
charset: look for the codepages in the right place

selftest runs from source3/source4. The codepages when not installed
are in ../codepages

14 years agos4-heimdal: a better way of handling dirfd()
Andrew Tridgell [Mon, 29 Mar 2010 11:47:34 +0000 (22:47 +1100)]
s4-heimdal: a better way of handling dirfd()

This prevents us getting thousands of warnings about dirfd() on
solaris

14 years agoselftest: Remove diff-subunit - it's included in subunit and not necessary for normal...
Jelmer Vernooij [Mon, 29 Mar 2010 23:00:16 +0000 (01:00 +0200)]
selftest: Remove diff-subunit - it's included in subunit and not necessary for normal operation.

14 years agoformat-subunit: Improve formatting, simplify code.
Jelmer Vernooij [Mon, 29 Mar 2010 22:59:04 +0000 (00:59 +0200)]
format-subunit: Improve formatting, simplify code.

14 years agoselftest: Replace perl subunit formatter with python subunit formatter,
Jelmer Vernooij [Mon, 29 Mar 2010 22:30:52 +0000 (00:30 +0200)]
selftest: Replace perl subunit formatter with python subunit formatter,
so we can leverage the work happening in python-subunit.

14 years agoselftest: Convert format-subunit to Python.
Jelmer Vernooij [Mon, 29 Mar 2010 20:25:25 +0000 (22:25 +0200)]
selftest: Convert format-subunit to Python.

14 years agoFix bug 7307 - man net usershare mistake
Jeremy Allison [Mon, 29 Mar 2010 21:24:18 +0000 (14:24 -0700)]
Fix bug 7307 - man net usershare mistake

Fix bad usage message, reported by headset001@yahoo.com.

Jeremy.

14 years agos4:installmisc.sh - fix location of "dnspython" library
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 20:23:53 +0000 (22:23 +0200)]
s4:installmisc.sh - fix location of "dnspython" library

14 years agos3:winbindd: correctly retry if the netlogon pipe gets disconnected during a logon...
Stefan Metzmacher [Mon, 29 Mar 2010 20:03:55 +0000 (22:03 +0200)]
s3:winbindd: correctly retry if the netlogon pipe gets disconnected during a logon call

This fixes hopefully the last part of bug #7295.

metze

14 years agos4:registry/util.c - remove those "talloc_free"s
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 19:52:12 +0000 (21:52 +0200)]
s4:registry/util.c - remove those "talloc_free"s

They're not really necessary.

14 years agos4:registry/tests/generic.c - fix the DWORD_* types test to work also against big...
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 19:27:18 +0000 (21:27 +0200)]
s4:registry/tests/generic.c - fix the DWORD_* types test to work also against big endian platforms

14 years agos4:.gitignore - update it for the new heimdal release
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 19:16:44 +0000 (21:16 +0200)]
s4:.gitignore - update it for the new heimdal release

14 years agos4:registry/ldb.c - Break with "NULL" as an error case when the data doesn't fit...
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 19:09:23 +0000 (21:09 +0200)]
s4:registry/ldb.c - Break with "NULL" as an error case when the data doesn't fit in the "reg_ldb_pack_value" function

14 years agos4:registry/ldb.c - Always check the "name" attribute for != NULL
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 18:53:38 +0000 (20:53 +0200)]
s4:registry/ldb.c - Always check the "name" attribute for != NULL

If it's NULL return invalid parameter as Windows does. The name is "" if it
refers to the default value.

14 years agos4:registry - move the UTF16 length calculation for "reg_key_get_info" into the RPC...
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 18:36:32 +0000 (20:36 +0200)]
s4:registry - move the UTF16 length calculation for "reg_key_get_info" into the RPC server code

It does fit better there.

14 years agos4:registry/util.c - fix indentation
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 17:55:16 +0000 (19:55 +0200)]
s4:registry/util.c - fix indentation

14 years agohowto4.txt - improve the content of chapter 2bis
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 17:45:33 +0000 (19:45 +0200)]
howto4.txt - improve the content of chapter 2bis

14 years agos4: complete the build instruction because the problem with the idl_full cames very...
Matthieu Patou [Wed, 24 Mar 2010 13:47:24 +0000 (16:47 +0300)]
s4: complete the build instruction because the problem with the idl_full cames very often

14 years agoWHATSNEW4.txt - updates
Matthias Dieter Wallnöfer [Mon, 29 Mar 2010 17:28:27 +0000 (19:28 +0200)]
WHATSNEW4.txt - updates

Update the file content.

14 years agoAdd partial information in whatsnew for the next release
Matthieu Patou [Wed, 24 Mar 2010 10:28:27 +0000 (13:28 +0300)]
Add partial information in whatsnew for the next release

14 years agoregistry: Fix compilation.
Jelmer Vernooij [Mon, 29 Mar 2010 16:43:38 +0000 (18:43 +0200)]
registry: Fix compilation.

14 years agoRevert reordering from commit 51bedf939568717424edd7732e1e315faa333849
Wilco Baan Hofman [Sun, 28 Mar 2010 15:07:09 +0000 (17:07 +0200)]
Revert reordering from commit 51bedf939568717424edd7732e1e315faa333849

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
14 years agoRevert "s4:registry - util.c - add harder checks for inputs on "reg_val_data_string""
Wilco Baan Hofman [Sun, 28 Mar 2010 15:03:08 +0000 (17:03 +0200)]
Revert "s4:registry - util.c - add harder checks for inputs on "reg_val_data_string""

This reverts commit eb8c8a0ecaa9bfd29f090db21fccdad7751767ae.

Conflicts:

source4/lib/registry/util.c

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
14 years agoRevert "s4:registry - util.c - move the "REG_NONE" case in the conversion functions...
Wilco Baan Hofman [Sun, 28 Mar 2010 14:46:53 +0000 (16:46 +0200)]
Revert "s4:registry - util.c - move the "REG_NONE" case in the conversion functions on top of the switch"

This reverts commit 4e6c0e1f6f37a7e04d10dbf7abbf626f52232aaf.

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
14 years agoRevert "s4:registry - util.c - treat unsupported and binary values as the same in...
Wilco Baan Hofman [Sun, 28 Mar 2010 14:46:30 +0000 (16:46 +0200)]
Revert "s4:registry - util.c - treat unsupported and binary values as the same in the conversion functions"

This reverts commit cc3eec1681bb6d614e688f51e48bd76f6d513e67.

Conflicts:

source4/lib/registry/util.c

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
14 years agoRevert "s4:registry - adaptions for "add memory contexts for delete value/key functions""
Wilco Baan Hofman [Sun, 28 Mar 2010 14:30:43 +0000 (16:30 +0200)]
Revert "s4:registry - adaptions for "add memory contexts for delete value/key functions""

This reverts commit 43170dafbcbe7464bce9b4c6d76532d7d0bf5b9a.

Conflicts:

source4/lib/registry/dir.c
source4/lib/registry/util.c

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
14 years agoRevert "s4:registry - "util" - make "reg_key_add_abs" consistent with "reg_key_del_abs""
Wilco Baan Hofman [Sun, 28 Mar 2010 14:18:46 +0000 (16:18 +0200)]
Revert "s4:registry - "util" - make "reg_key_add_abs" consistent with "reg_key_del_abs""

This reverts commit 9d8592978e28c492d971a3b5a4c0133febc149ea.

Conflicts:

source4/lib/registry/util.c

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
14 years agoRevert of commit 5b6ad54f43741c0c25b35e44cafe5fed352ff133 in registry.h
Wilco Baan Hofman [Sun, 28 Mar 2010 14:12:22 +0000 (16:12 +0200)]
Revert of commit 5b6ad54f43741c0c25b35e44cafe5fed352ff133 in registry.h

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
14 years agoRemove incorrect const, something that was correct in commit 9c3e6249fd984b823a77cab0...
Wilco Baan Hofman [Sun, 28 Mar 2010 14:03:12 +0000 (16:03 +0200)]
Remove incorrect const, something that was correct in commit 9c3e6249fd984b823a77cab0514601d2a487920a

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>