summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Revert "s4:debug: make setup_logging() a bit more compatible with samba3"Andrew Bartlett2009-06-291-1/+1
| | | | | | | | The problem is that the enum was previously a 'rachet', that is, it would only reset to a level higher than it was previouly set to. Changing the order broke file-based logging for our production sites. This reverts commit 49a6d757b4d944cd22c91b2838beb83f04fbe1e9.
* Two patches which fix issues on cross compiling/buildingNathaniel McCallum2009-06-291-1/+1
|
* Properly free a downlevel readv request. Metze, please checkVolker Lendecke2009-06-271-0/+1
|
* Move asn1_load_nocopy() to lib/util/asn1.cVolker Lendecke2009-06-202-0/+11
|
* Move asn1_blob() to lib/util/asn1.cVolker Lendecke2009-06-202-0/+17
|
* Partially revert restriction of socket_wrapper to 1500 byte writesAndrew Bartlett2009-06-191-10/+32
| | | | | | | | | | | This keeps the restriction for stream sockets (where the caller will retry), without creating problems on datagram sockets (CLDAP is not defined, as far as I know, across multiple UDP packets). The commit adding this restriction was 47b106c0ae8b91c9cccfc21bf8e4e416b1abfd5d Andrew Bartlett
* Revert "For tevent to install tevent_util.h"Simo Sorce2009-06-181-1/+0
| | | | | | This reverts commit b112cc5503350b248949bdbcce8072f5523ce877. tevent_util.h is a private header. Must not be installed.
* For tevent to install tevent_util.hEric Sandall2009-06-181-0/+1
| | | | | | | Patch for bug #6270 This patch is for the future when samba4 builds using external libraries. With this patch, tevent now installs tevent_util.h which is required by samba4.
* s4: Call va_end() after all va_start()/va_copy() calls.Andrew Kroeger2009-06-181-0/+2
| | | | | | | | This corrects the issues reaised in bug #6129, and some others that were not originally identified. It also accounts for some code that was in the original bug report but appears to have since been made common between S3 and S4. Thanks to Erik Hovland <erik@hovland.org> for the original bug report.
* tdb: Fix help string in configure flag to enable Python bindings.Jelmer Vernooij2009-06-171-1/+1
|
* fix release scripts to always git cleanSimo Sorce2009-06-172-0/+6
| | | | | This makes sure we do not include foreign object files or other build byproducts by mistake.
* Add exports file and abi checker for teventSimo Sorce2009-06-157-2/+157
| | | | | | | | This is a first attempt at exporting symbols only for public functions We also provide a rudimentary ABI checker that tries to check that function signatures are not changed by mistake. Given our use of macros this is not an API checker. It's all based on tevent.h contents and the gcc -aux-info option
* Add exports file and abi checker for talloctalloc-1.3.1Simo Sorce2009-06-158-9/+169
| | | | | | | | This is a first attempt at exporting symbols only for public functions We also provide a rudimentary ABI checker that tries to check that function signatures are not changed by mistake. Given our use of macros this is not an API checker. It's all based on talloc.h contents and the gcc -aux-info option
* Add exports file and abi checker for tdbtdb-1.1.5Simo Sorce2009-06-157-3/+172
| | | | | | | | This is a first attempt at exporting symbols only for public functions We also provide a rudimentary ABI checker that tries to check that function signatures are not changed by mistake. Given our use of macros this is not an API checker. It's all based on tdb.h contents and the gcc -aux-info option
* Add new replace check for --version-scriptSimo Sorce2009-06-151-0/+16
| | | | | | Allows us to pass an export files on Linux and Solaris so that we can expose only symbols that are actually supposed to be global, and keep as local anything else.
* Add option to --disable-python on buildSimo Sorce2009-06-151-0/+9
|
* Fix a = vs == error in writev_handlerVolker Lendecke2009-06-151-1/+1
|
* s4:heimdal: import lorikeet-heimdal-200906080040 (commit ↵Andrew Bartlett2009-06-121-1/+5
| | | | | | | | | | | 904d0124b46eed7a8ad6e5b73e892ff34b6865ba) Also including the supporting changes required to pass make test A number of heimdal functions and constants have changed since we last imported a tree (for the better, but inconvenient for us). Andrew Bartlett
* selftest: Fix handling of testsuite, reintroduce progress indication.Jelmer Vernooij2009-06-111-1/+0
|
* Fix build of recurusion fix in reopen_logs()Andrew Bartlett2009-06-111-1/+1
|
* Don't recurse in reopen_logs().Andrew Bartlett2009-06-111-0/+6
| | | | | | | Use the state to avoid recursion in reopen_logs(), as DEBUG() can call this function. Andrew Bartlett
* lib-util: move set_blocking() call into own file.Günther Deschner2009-06-103-31/+63
| | | | Guenther
* added asn1 functions for handling booleans in a simple contextAndrew Tridgell2009-06-102-0/+25
|
* It seems that IRIX doesn't have IOV_MAXAndrew Tridgell2009-06-091-0/+4
|
* try to get PICFLAG right for HP-UX with gccAndrew Tridgell2009-06-091-6/+5
|
* fixed socket wrapper to determine family from the right structureAndrew Tridgell2009-06-091-1/+1
| | | | | | | | In convert_in_un_remote() the socket family can be accessed either as si->family or inaddr->sa_family. We were using the si->family to determine how to cast the inaddr structure, but if si->family != inaddr->sa_family then we will incorrectly be casting a in6 structure as in4 or vice-versa.
* nss_wrapper: fix typo in testsuite.Günther Deschner2009-06-081-1/+1
| | | | Guenther
* libsamba-util: Fix soversion.Jelmer Vernooij2009-06-081-1/+1
|
* Add langinfo.h to the system/locale.hTimur I. Bakeyev2009-06-082-1/+5
| | | | | | | | | | | | | | | This patch for Samba4. It's not really inspired by any real need, just for the consistency. We define replace/system/locale.h as a generic header, that includes all locale related headers and we are using nl_langinfo at least in Samba3. So, it would be consistent to add yet another locale-related header to the set of locale.h headers. Here is the patch. With regards, Timur Bakeyev. Signed-off-by: Stefan Metzmacher <metze@samba.org>
* nss_wrapper: add my copyright.Günther Deschner2009-06-081-0/+1
| | | | Guenther
* replace: add fallback define for IOV_MAXStefan Metzmacher2009-06-081-0/+16
| | | | | | This hopefully fixes the build on IRIX. metze
* talloc: try to fix the source4 build on AIXStefan Metzmacher2009-06-081-1/+1
| | | | metze
* async_sock: try fix the source4 build on FreeBSD, Solaris, SLES8Stefan Metzmacher2009-06-083-6/+11
| | | | metze
* lib/tdb/tools/tdbtorture.c: fixed memory leak.Slava Semushin2009-06-061-0/+2
| | | | | Found by cppcheck: [lib/tdb/tools/tdbtorture.c:326]: (error) Memory leak: pids
* Use data_blob_null instead of data_blob(NULL, 0)Volker Lendecke2009-06-061-1/+1
|
* Fix an uninitialized variable read in async_connect_sendVolker Lendecke2009-06-061-5/+5
|
* nss_wrapper: rename nwrap_cache_{re,un}load as per metzes request.Günther Deschner2009-06-061-10/+10
| | | | Guenther
* nss_wrapper: add support for loading nss_winbind.so via WINBIND_SO_PATH env.Günther Deschner2009-06-061-0/+12
| | | | Guenther
* nss_wrapper: fill in module nwrap_backend.Günther Deschner2009-06-061-13/+332
| | | | Guenther
* nss_wrapper: add missing return in nwrap_module_init().Günther Deschner2009-06-051-0/+1
| | | | Guenther
* nss_wrapper: add skeleton for module nwrap_backend.Günther Deschner2009-06-051-0/+159
| | | | Guenther
* nss_wrapper: add capability to load nss modules.Günther Deschner2009-06-051-1/+115
| | | | Guenther
* nss_wrapper: add struct nwrap_backend.Günther Deschner2009-06-051-85/+320
| | | | Guenther
* nss_wrapper: add cross checking test to testsuite.Günther Deschner2009-06-051-0/+90
| | | | Guenther
* nss_wrapper: add tests for getgrent_r to testsuite.Günther Deschner2009-06-051-0/+131
| | | | Guenther
* nss_wrapper: add tests for getpwent_r to testsuite.Günther Deschner2009-06-051-0/+141
| | | | Guenther
* nss_wrapper: fix segfault in nwrap_gr_copy_r()Stefan Metzmacher2009-06-051-3/+8
| | | | metze
* nss_wrapper: rename test_nwrap_env to test_nwrap_enumeration in testsuite.Günther Deschner2009-06-051-2/+2
| | | | Guenther
* nss_wrapper: add more coherency checks for user and group enumeration.Günther Deschner2009-06-051-0/+8
| | | | Guenther
* nss_wrapper: remove getgrouplist from nwrap_ops table.Günther Deschner2009-06-041-72/+64
| | | | Guenther