summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix memleaksVolker Lendecke2009-01-301-0/+7
|
* pass NULL to prs_give_memory, that is a pointerVolker Lendecke2009-01-301-1/+1
|
* selftest: pass down the path to python for provisioning samba4Stefan Metzmacher2009-01-302-1/+5
| | | | metze
* s3:selftest: run the same tests as 'make test'Stefan Metzmacher2009-01-301-29/+73
| | | | | | Only the tests with samba4's smbtorture are missing. metze
* s3:tests: add a guard arround . $incdir/test_functions.shStefan Metzmacher2009-01-3011-0/+21
| | | | | | So that caller can overwrite the functions. metze
* s3:smbconftort: don't use reserved words ('test:', 'failure:', 'success:')Stefan Metzmacher2009-01-301-31/+29
| | | | | | Temporary results printfs should not contain reserved subunit words. metze
* heimdal:hdb: always include "config.h" firstStefan Metzmacher2009-01-301-0/+4
| | | | metze
* s4:lib/ldb: include replace.h in pyldb.cStefan Metzmacher2009-01-301-0/+1
| | | | | | This fixes the build on Tru64. metze
* lib/tevent: include replace.h in pytevent.cStefan Metzmacher2009-01-301-0/+1
| | | | | | This fixes the build on Tru64. metze
* lib/tdb: include replace.h and system/filesys.h in pytdb.cStefan Metzmacher2009-01-301-4/+3
| | | | | | This fixes the build on Tru64. metze
* lib/talloc: include replace.h in pytalloc.cStefan Metzmacher2009-01-301-0/+1
| | | | | | This fixes the build on Tru64. metze
* heimdal:camellia: include roken.hStefan Metzmacher2009-01-302-0/+4
| | | | metze
* Revert "s4:heimdal_build: include "system/network.h" via config.h wrapper"Stefan Metzmacher2009-01-301-1/+0
| | | | | | | | This reverts commit 334c6e6b78de8529fce0061efd5249f8fe2d256f. This breaks the build later in the ntvfs code... metze
* s4:heimdal_build: add a dummy define for dirfd()Stefan Metzmacher2009-01-301-0/+4
| | | | metze
* lib/replace: check if we have dirfd()Stefan Metzmacher2009-01-301-0/+3
| | | | | | Note: we only use this internally and don't replace it by default. metze
* s4:lib/util: fix the buildStefan Metzmacher2009-01-301-1/+1
| | | | metze
* heimdal:roken: arg_match_long() should return a valueStefan Metzmacher2009-01-301-0/+3
| | | | | | This should fix a build problem on IRIX. metze
* heimdal:roken: arg_printusage() should not try to return a value.Stefan Metzmacher2009-01-301-2/+2
| | | | | | This should fix problems with the IRIX build. metze
* s4:heimdal_build: include "system/network.h" via config.h wrapperStefan Metzmacher2009-01-301-0/+1
| | | | | | This fixes build problems on Tru64. metze
* heimdal:camellia-ntt.c: include config.h as first headerStefan Metzmacher2009-01-301-0/+3
| | | | metze
* heimdal: don't include <sys/cdefs.h> without knowing it's thereStefan Metzmacher2009-01-302-0/+13
| | | | metze
* heimdal: don't include <ifaddrs.h> without knowing it's thereStefan Metzmacher2009-01-301-0/+2
| | | | metze
* s4:build: kill DEFAULT_HEADERS variableStefan Metzmacher2009-01-302-4/+4
| | | | metze
* Add helper function to get a module name, may be useful for debugging.Simo Sorce2009-01-302-1/+7
|
* Fix misfiled headers.Simo Sorce2009-01-304-14/+12
| | | | | Some public functions were mistakenly put into ldb_private.h Revert all modules to only include ldb_module.h
* s4:selftest: run RPC-COUNTCALLS as dc:localStefan Metzmacher2009-01-301-1/+4
| | | | metze
* s4:selftest: run ncalrpc tests in dc:local modeStefan Metzmacher2009-01-301-12/+22
| | | | metze
* selftest: don't export $CONFIGURATION anymore only $SMB_CONF_PATHStefan Metzmacher2009-01-303-10/+4
| | | | metze
* pidl: fix samba3-cli test after change to cli->dispatch()Stefan Metzmacher2009-01-301-2/+2
| | | | metze
* Add the "SMBD" rpc transportVolker Lendecke2009-01-305-1/+785
| | | | | | | | | | | | | | | | | | | | The idea of this is that all client utils like smbpasswd and also for example "net join" do not access our internal databases like passdb and secrets.tdb directly anymore but pass everything throught the well-established RPC interfaces. The way you use this is the following: With rpc_cli_smbd_conn_init() or its async variant you initialize a "struct rpc_cli_smbd_conn". This structure is the link to a freshly forked smbd, ready to be used for RPC services. You should only ever have one such structure in your program. More don't hurt, but are plainly unnecessary. If you want to use the SAMR pipe to change a passwort, you connect to that pipe with rpc_pipe_open_local. Do you normal rpccli_samr calls on that and your locally forked smbd will connect to passdb for you. GD, this might make the distinction between the _l and _r calls in libnetapi mostly unnecessary. At least it is intended to do so... :-)
* Make rpc_transport_np_init asyncVolker Lendecke2009-01-302-32/+128
|
* Add async cli_ntcreateVolker Lendecke2009-01-302-0/+154
|
* Make cli_tcon_andx asyncVolker Lendecke2009-01-3013-101/+210
|
* Make cli_session_setup_guest asyncVolker Lendecke2009-01-302-37/+107
|
* s3-docs: fix typo in eventlogadm manpage.Günther Deschner2009-01-301-2/+2
| | | | Guenther
* selftest: fix "none" testStefan Metzmacher2009-01-301-1/+1
| | | | metze
* selftest: fix default option nameStefan Metzmacher2009-01-301-1/+2
| | | | metze
* s4:fix the build after 380874ef863866c94c999ef53252b9d30df65e88Stefan Metzmacher2009-01-302-0/+2
| | | | metze
* selftest: allow environment optionsStefan Metzmacher2009-01-303-29/+44
| | | | | | | | | We support "local" and "client" (default) now. We can decide if we want to run a client against the server (with a special client.conf) or if we want to run tests localy on the server with the same config as the server. metze
* Fix standalone configure scriptsSimo Sorce2009-01-303-1/+3
|
* Fix the mess with ldb includes.Simo Sorce2009-01-3077-578/+1031
| | | | | | | | Separate again the public from the private headers. Add a new header specific for modules. Also add service function for modules as now ldb_context and ldb_module are opaque structures for them.
* Fix coverity CID#117 - resource leak in error path.Jeremy Allison2009-01-291-24/+53
| | | | Jeremy.
* Fix coverity CID#116. Resource leak on error path.Jeremy Allison2009-01-291-2/+4
| | | | Jeremy.
* Fix coverity CID#115. Resource leak in error path.Jeremy Allison2009-01-291-1/+4
| | | | Jeremy.
* Fix coverity CID#66. Resource leak in error path.Jeremy Allison2009-01-291-0/+1
| | | | Jeremy.
* Upgrade POSIX inheritance storage to a new format (version 2). StoresJeremy Allison2009-01-291-200/+360
| | | | | the Windows ACL type and flags if "map acl inherit" is set. Jeremy.
* Merge branch 'master' of ssh://jra@git.samba.org/data/git/sambaJeremy Allison2009-01-2914-57/+130
|\
| * s3 build: Fix "shadows global declaration warning"Tim Prouty2009-01-291-1/+1
| |
| * s3 onefs: Add the OneFS implementation of SMB_VFS_GET_ALLOC_SIZETim Prouty2009-01-291-0/+27
| |
| * s3: Add a new SMB_VFS_GET_ALLOC_SIZE vfs operationTim Prouty2009-01-2913-56/+102
| | | | | | | | | | This allows module implementors to customize what allocation size is returned to the client.