Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-01-30 | s4:heimdal_build: heimdal requires u_int32_t and u_char | Stefan Metzmacher | 1 | -0/+3 | |
metze | |||||
2009-01-30 | Fix memleaks | Volker Lendecke | 1 | -0/+7 | |
2009-01-30 | pass NULL to prs_give_memory, that is a pointer | Volker Lendecke | 1 | -1/+1 | |
2009-01-30 | selftest: pass down the path to python for provisioning samba4 | Stefan Metzmacher | 2 | -1/+5 | |
metze | |||||
2009-01-30 | s3:selftest: run the same tests as 'make test' | Stefan Metzmacher | 1 | -29/+73 | |
Only the tests with samba4's smbtorture are missing. metze | |||||
2009-01-30 | s3:tests: add a guard arround . $incdir/test_functions.sh | Stefan Metzmacher | 11 | -0/+21 | |
So that caller can overwrite the functions. metze | |||||
2009-01-30 | s3:smbconftort: don't use reserved words ('test:', 'failure:', 'success:') | Stefan Metzmacher | 1 | -31/+29 | |
Temporary results printfs should not contain reserved subunit words. metze | |||||
2009-01-30 | heimdal:hdb: always include "config.h" first | Stefan Metzmacher | 1 | -0/+4 | |
metze | |||||
2009-01-30 | s4:lib/ldb: include replace.h in pyldb.c | Stefan Metzmacher | 1 | -0/+1 | |
This fixes the build on Tru64. metze | |||||
2009-01-30 | lib/tevent: include replace.h in pytevent.c | Stefan Metzmacher | 1 | -0/+1 | |
This fixes the build on Tru64. metze | |||||
2009-01-30 | lib/tdb: include replace.h and system/filesys.h in pytdb.c | Stefan Metzmacher | 1 | -4/+3 | |
This fixes the build on Tru64. metze | |||||
2009-01-30 | lib/talloc: include replace.h in pytalloc.c | Stefan Metzmacher | 1 | -0/+1 | |
This fixes the build on Tru64. metze | |||||
2009-01-30 | heimdal:camellia: include roken.h | Stefan Metzmacher | 2 | -0/+4 | |
metze | |||||
2009-01-30 | Revert "s4:heimdal_build: include "system/network.h" via config.h wrapper" | Stefan Metzmacher | 1 | -1/+0 | |
This reverts commit 334c6e6b78de8529fce0061efd5249f8fe2d256f. This breaks the build later in the ntvfs code... metze | |||||
2009-01-30 | s4:heimdal_build: add a dummy define for dirfd() | Stefan Metzmacher | 1 | -0/+4 | |
metze | |||||
2009-01-30 | lib/replace: check if we have dirfd() | Stefan Metzmacher | 1 | -0/+3 | |
Note: we only use this internally and don't replace it by default. metze | |||||
2009-01-30 | s4:lib/util: fix the build | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2009-01-30 | heimdal:roken: arg_match_long() should return a value | Stefan Metzmacher | 1 | -0/+3 | |
This should fix a build problem on IRIX. metze | |||||
2009-01-30 | heimdal:roken: arg_printusage() should not try to return a value. | Stefan Metzmacher | 1 | -2/+2 | |
This should fix problems with the IRIX build. metze | |||||
2009-01-30 | s4:heimdal_build: include "system/network.h" via config.h wrapper | Stefan Metzmacher | 1 | -0/+1 | |
This fixes build problems on Tru64. metze | |||||
2009-01-30 | heimdal:camellia-ntt.c: include config.h as first header | Stefan Metzmacher | 1 | -0/+3 | |
metze | |||||
2009-01-30 | heimdal: don't include <sys/cdefs.h> without knowing it's there | Stefan Metzmacher | 2 | -0/+13 | |
metze | |||||
2009-01-30 | heimdal: don't include <ifaddrs.h> without knowing it's there | Stefan Metzmacher | 1 | -0/+2 | |
metze | |||||
2009-01-30 | s4:build: kill DEFAULT_HEADERS variable | Stefan Metzmacher | 2 | -4/+4 | |
metze | |||||
2009-01-30 | Add helper function to get a module name, may be useful for debugging. | Simo Sorce | 2 | -1/+7 | |
2009-01-30 | Fix misfiled headers. | Simo Sorce | 4 | -14/+12 | |
Some public functions were mistakenly put into ldb_private.h Revert all modules to only include ldb_module.h | |||||
2009-01-30 | s4:selftest: run RPC-COUNTCALLS as dc:local | Stefan Metzmacher | 1 | -1/+4 | |
metze | |||||
2009-01-30 | s4:selftest: run ncalrpc tests in dc:local mode | Stefan Metzmacher | 1 | -12/+22 | |
metze | |||||
2009-01-30 | selftest: don't export $CONFIGURATION anymore only $SMB_CONF_PATH | Stefan Metzmacher | 3 | -10/+4 | |
metze | |||||
2009-01-30 | pidl: fix samba3-cli test after change to cli->dispatch() | Stefan Metzmacher | 1 | -2/+2 | |
metze | |||||
2009-01-30 | Add the "SMBD" rpc transport | Volker Lendecke | 5 | -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... :-) | |||||
2009-01-30 | Make rpc_transport_np_init async | Volker Lendecke | 2 | -32/+128 | |
2009-01-30 | Add async cli_ntcreate | Volker Lendecke | 2 | -0/+154 | |
2009-01-30 | Make cli_tcon_andx async | Volker Lendecke | 13 | -101/+210 | |
2009-01-30 | Make cli_session_setup_guest async | Volker Lendecke | 2 | -37/+107 | |
2009-01-30 | s3-docs: fix typo in eventlogadm manpage. | Günther Deschner | 1 | -2/+2 | |
Guenther | |||||
2009-01-30 | selftest: fix "none" test | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2009-01-30 | selftest: fix default option name | Stefan Metzmacher | 1 | -1/+2 | |
metze | |||||
2009-01-30 | s4:fix the build after 380874ef863866c94c999ef53252b9d30df65e88 | Stefan Metzmacher | 2 | -0/+2 | |
metze | |||||
2009-01-30 | selftest: allow environment options | Stefan Metzmacher | 3 | -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 | |||||
2009-01-30 | Fix standalone configure scripts | Simo Sorce | 3 | -1/+3 | |
2009-01-30 | Fix the mess with ldb includes. | Simo Sorce | 77 | -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. | |||||
2009-01-29 | Fix coverity CID#117 - resource leak in error path. | Jeremy Allison | 1 | -24/+53 | |
Jeremy. | |||||
2009-01-29 | Fix coverity CID#116. Resource leak on error path. | Jeremy Allison | 1 | -2/+4 | |
Jeremy. | |||||
2009-01-29 | Fix coverity CID#115. Resource leak in error path. | Jeremy Allison | 1 | -1/+4 | |
Jeremy. | |||||
2009-01-29 | Fix coverity CID#66. Resource leak in error path. | Jeremy Allison | 1 | -0/+1 | |
Jeremy. | |||||
2009-01-29 | Upgrade POSIX inheritance storage to a new format (version 2). Stores | Jeremy Allison | 1 | -200/+360 | |
the Windows ACL type and flags if "map acl inherit" is set. Jeremy. | |||||
2009-01-29 | Merge branch 'master' of ssh://jra@git.samba.org/data/git/samba | Jeremy Allison | 14 | -57/+130 | |
2009-01-29 | s3 build: Fix "shadows global declaration warning" | Tim Prouty | 1 | -1/+1 | |
2009-01-29 | s3 onefs: Add the OneFS implementation of SMB_VFS_GET_ALLOC_SIZE | Tim Prouty | 1 | -0/+27 | |