summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* replace: fix build issues on GNU Hurd (#7998)Björn Jacke2011-05-301-1/+1
| | | | | | | | Patch from Samuel Thibault <sthibault@debian.org> to fix Debian Bug 610678 resp. BSO #7998. IOV_MAX and UIO_MAXIOV are not defined on GNU Hurd. Autobuild-User: Björn Jacke <bj@sernet.de> Autobuild-Date: Mon May 30 00:53:59 CEST 2011 on sn-devel-104
* Fix numerous missing dependencies in WAF build scriptsSean Finney2011-05-252-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the recent consolidation of code between s3 and s4, a number of new dependencies have been implicitly introduced. For example, previous s3 code gained an implicit dependency on talloc after the charset related consolidation (lib/util/charset/charset.h now includes talloc.h). When building against the embedded version of talloc this isn't a problem since the paths are automatically added to the search path, but when building against the external libraries build failures will occur for all components that don't directly or indirectly include talloc as a dependency. Since charset.h is included from util.h, which in turn is included from includes.h, this means most of the codebase (s3 and s4) has such an undeclared dependency. Therefore, samba-util-common and samba-util have been added as dependencies to the s3 and s4 code respectively, for all cases where the source would otherwise fail to build. Additionally, a few other dependencies are added in specific wscript_build files to address similar dependency-related problems. https://bugzilla.samba.org/show_bug.cgi?id=8128 Signed-off-by: Sean Finney <seanius@seanius.net> Signed-off-by: Matthias Dieter Wallnöfer <mdw@samba.org> Signed-off-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Wed May 25 19:22:13 CEST 2011 on sn-devel-104
* Fix our asn.1 parser to handle negative numbers.Jeremy Allison2011-05-241-0/+9
| | | | | Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Tue May 24 22:57:16 CEST 2011 on sn-devel-104
* lib/util Add Volker's asn1_Integer test into code that runs in 'make test'Andrew Bartlett2011-05-241-0/+94
| | | | | | | The comfychair test harness isn't hooked up, and with the current infrustructure C code is better tested directly here. Andrew Bartlett
* Fix bug found when building on an IPv6-only system by Kai Blin.Jeremy Allison2011-05-191-3/+16
| | | | | | | | | | | | | | | | | | When building on IPv6-only, doing: hints.ai_family = AF_INET; getaddrinfo("0.0.0.0", NULL, &hints, &ppres) fails as AF_INET is unavailable on an IPv6-only system. This causes us to fallback to our replacement getaddrinfo code which is IPv4-only. As we're only trying to detect a specific AIX bug here, broaden the tests to find that bug, and also test for working getaddrinfo in an IPv6-only safe way. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu May 19 02:21:54 CEST 2011 on sn-devel-104
* lib/util/charset: Remove unused strcasecmp_w and strncasecmp_wAndrew Bartlett2011-05-181-32/+0
| | | | | Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed May 18 17:22:15 CEST 2011 on sn-devel-104
* lib/util/charset use talloc_stackframe() rather than talloc_tos()Andrew Bartlett2011-05-181-12/+12
| | | | | | | This is common code, and we can't assume a talloc_stackframe() so we must create it. Andrew Bartlett
* lib/util/charset Don't allow invalid 'dos charset = utf8'Andrew Bartlett2011-05-181-0/+5
| | | | | | | No DOS client used UTF8, and this creates subtle, difficult to disagnose breakage of schannel (domain membership). Andrew Bartlett
* Don't evaluate the src argument to fstrcpy/fstrcat/nstrcpy/unstrcpy twice. ↵Jeremy Allison2011-05-171-5/+25
| | | | Prevents side-effects when src is a function call.
* lib/util/charset: fix the toplevel MacOS X build.Günther Deschner2011-05-171-2/+3
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue May 17 16:16:59 CEST 2011 on sn-devel-104
* talloc: splitout _talloc_free_children_internal()Stefan Metzmacher2011-05-171-50/+27
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue May 17 10:49:13 CEST 2011 on sn-devel-104
* talloc: fixed a use after free error in talloc_free_children()Stefan Metzmacher2011-05-171-1/+16
| | | | | | This is similar to commit 6f51a1f45bf4de062cce7a562477e8140630a53d. metze
* talloc: use _talloc_free_internal() in talloc_free_children()Stefan Metzmacher2011-05-171-1/+1
| | | | metze
* talloc: test talloc_steal out of a talloc_poolStefan Metzmacher2011-05-171-0/+69
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue May 17 09:43:01 CEST 2011 on sn-devel-104
* talloc: add memset() calls to test_pool()Stefan Metzmacher2011-05-171-0/+17
| | | | | | This way we the pool based valgrind code. metze
* talloc: setup the new 'tc' before TC_UNDEFINE_GROW_CHUNK() _talloc_realloc()Stefan Metzmacher2011-05-171-0/+1
| | | | metze
* talloc: make really sure only optimize realloc if there's only one pool chunkStefan Metzmacher2011-05-171-1/+6
| | | | | | | *talloc_pool_objectcount(pool_tc) == 2 doesn't mean the one of the objects is the pool itself! So we better check for == 1 and calculate the chunk count. metze
* talloc: make use of _talloc_free_poolmem() in _talloc_realloc()Stefan Metzmacher2011-05-171-15/+1
| | | | | | This should follow the same logic... metze
* talloc: split the handling of FLAG_POOL/FLAG_POOLMEM in _talloc_free_internalStefan Metzmacher2011-05-171-32/+66
| | | | | | | | | | | | | | | The optimization of the object_count == 1 case should only happen for when we're not destroying the pool itself. And it should only happen if the pool itself is still valid. If the pool isn't valid (it has TALLOC_FLAG_FREE), object_count == 1 does not mean that the pool is the last object, which can happen if you use talloc_steal/move() on memory from the pool and then free the pool itself. Thanks to Volker for noticing this! metze
* Use ZERO_STRUCTP in util_netVolker Lendecke2011-05-141-2/+2
|
* lib/util/charset Move built-in charset modules to the top levelAndrew Bartlett2011-05-136-1/+1028
| | | | | | | This removes the 'charset' subsystem and allows these modules to be used across the whole of Samba. Andrew Bartlett
* lib/util/ Fix crash bug caused by gfree_debug()Andrew Bartlett2011-05-131-1/+1
| | | | | | | The issue is that we should reset the debug_num_classes to 0 when we un-initialise the debug system. Andrew Bartlett
* lib/replace: fix an #if HAVE_GSSAPI_GSSAPI_EXT_H to be an #ifdefMichael Adam2011-05-101-1/+1
|
* libsmbconf: Define a doxygen group for libsmbconf.Andreas Schneider2011-05-101-0/+11
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_transaction_cancel().Andreas Schneider2011-05-101-0/+10
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_transaction_commit().Andreas Schneider2011-05-101-0/+13
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_transaction_start().Andreas Schneider2011-05-101-0/+11
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_delete_global_includes().Andreas Schneider2011-05-101-0/+8
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_delete_includes().Andreas Schneider2011-05-101-0/+12
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_set_global_includes().Andreas Schneider2011-05-101-0/+12
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_set_includes().Andreas Schneider2011-05-101-0/+15
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_get_global_includes().Andreas Schneider2011-05-101-0/+15
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_get_includes().Andreas Schneider2011-05-101-0/+17
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_delete_global_parameter().Andreas Schneider2011-05-101-0/+13
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_delete_parameter().Andreas Schneider2011-05-101-0/+13
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_get_global_parameter().Andreas Schneider2011-05-101-0/+17
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_get_parameter().Andreas Schneider2011-05-101-0/+17
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_set_global_parameter().Andreas Schneider2011-05-101-0/+16
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_set_parameter().Andreas Schneider2011-05-101-0/+15
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_delete_share().Andreas Schneider2011-05-101-0/+11
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_get_share().Andreas Schneider2011-05-101-0/+18
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_create_share().Andreas Schneider2011-05-101-0/+11
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_share_exists().Andreas Schneider2011-05-101-0/+10
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_get_share_names().Andreas Schneider2011-05-101-0/+15
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_get_config().Andreas Schneider2011-05-101-4/+22
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_drop().Andreas Schneider2011-05-101-0/+9
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_changed().Andreas Schneider2011-05-101-0/+20
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_shutdown().Andreas Schneider2011-05-101-0/+6
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_is_writeable().Andreas Schneider2011-05-101-0/+8
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* libsmbconf: Document smbconf_backend_requires_messaging().Andreas Schneider2011-05-101-2/+14
| | | | Signed-off-by: Michael Adam <obnox@samba.org>