summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* s3-eventlog: trying to avoid to pass around full ndr structures in rpc_server.Günther Deschner2009-01-081-6/+11
| | | | | | Jerry, please check. Guenther
* Fix race condition in alarm lock processing noticed by Richard Sharpe ↵Jeremy Allison2009-01-081-1/+1
| | | | | | | | | | | | | | | <realrichardsharpe@gmail.com>. "It seems to me that if the lock is already held by another process when we enter this code, there is a race between the timeout and the granting. If the lock is subsequently granted, the process releasing the lock will signal the wait variable (or whatever) and our process will be scheduled. However, if the timeout occurs before we are scheduled, the timeout will be delivered first. We will have the lock but will forget we have the lock, and never release it." Jeremy.
* s3-net: fix type in rpc_service_list_internal(). Sorry...Günther Deschner2009-01-081-1/+1
| | | | Guenther
* s4-smbtorture: extend test_QueryServiceConfig2W a bit.Günther Deschner2009-01-081-0/+18
| | | | Guenther
* s4-smbtorture: fix build of svcctl torture test.Günther Deschner2009-01-081-2/+2
| | | | Guenther
* s3: re-run make samba3-idl.Günther Deschner2009-01-086-74/+224
| | | | Guenther
* svcctl: use svcctl_ServiceState in some other places.Günther Deschner2009-01-081-3/+3
| | | | Guenther
* svcctl: use hex range format in IDL.Günther Deschner2009-01-081-7/+7
| | | | Guenther
* svcctl: add ENUM_SERVICE_STATUSW and ENUM_SERVICE_STATUSA.Günther Deschner2009-01-081-3/+9
| | | | Guenther
* svcctl: remove redundant SERVICE_STATE_* defines.Günther Deschner2009-01-081-7/+3
| | | | Guenther
* s3:smbd: fix the build with dmapi supportStefan Metzmacher2009-01-081-2/+0
| | | | | | | struct smbd_dmapi_context *dmapi_ctx; is in globals.c metze
* s4:blackbox: don't remove newlines in the subunit failure outputStefan Metzmacher2009-01-081-1/+1
| | | | metze
* s4:events: don't trigger \n in debug messages two timesStefan Metzmacher2009-01-081-1/+1
| | | | metze
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij2009-01-081-1/+1
|\
| * Attempt to fix the buildVolker Lendecke2009-01-081-1/+1
| |
* | Make sure smbtorture4 can find all gensec modules. (Fixes RPC-BINDSAMBA3)Jelmer Vernooij2009-01-081-0/+1
|/
* s3-svcctl: use pidl based struct SERVICE_STATUS.Günther Deschner2009-01-089-24/+18
| | | | Guenther
* s3: re-run make samba3-idl.Günther Deschner2009-01-083-7/+104
| | | | Guenther
* s3-svcctl: add copyright to svcctl rpc_server.Günther Deschner2009-01-081-2/+5
| | | | Guenther
* s3-svcctl: remove some more redundant headers.Günther Deschner2009-01-084-16/+3
| | | | Guenther
* s3-svcctl: move SVC_HANDLE_IS* defines to implementation specific header file.Günther Deschner2009-01-082-4/+4
| | | | Guenther
* s3-svcctl: remove (now duplicate) defines.Günther Deschner2009-01-081-22/+0
| | | | Guenther
* svcctl: add svcctl_ServiceStatus and svcctl_ControlsAccepted.Günther Deschner2009-01-081-2/+24
| | | | Guenther
* s3-svcctl: remove (now duplicate) SVCCTL_STAT* defines.Günther Deschner2009-01-081-5/+0
| | | | Guenther
* Don't attempt to use GNUTLS >= 2.6, as it is known broken with the ↵Jelmer Vernooij2009-01-081-30/+28
| | | | socket-tls backend.
* Fix ldap.py test on systems that *can* find the record (the search fails ↵Jelmer Vernooij2009-01-081-1/+1
| | | | here locally).
* Print the failed value in the time tests.Jelmer Vernooij2009-01-081-5/+8
|
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij2009-01-0855-929/+1531
|\
| * s3:smbd: move all globals and static variables in globals.[ch]Stefan Metzmacher2009-01-0839-306/+554
| | | | | | | | | | | | The goal is to move all this variables into a big context structure. metze
| * s3:smbd: variables in a main() don't need to be staticStefan Metzmacher2009-01-081-7/+7
| | | | | | | | metze
| * s3:smbd: open_sockets_smbd() don't need a static variable arrount atexit()Stefan Metzmacher2009-01-081-7/+1
| | | | | | | | | | | | open_sockets_smbd() is only called once. metze
| * s3:smbd: keep dmapi globals in one context structStefan Metzmacher2009-01-081-28/+44
| | | | | | | | metze
| * s3:smbd: remove stupid static variables for the nfs quota codeStefan Metzmacher2009-01-081-16/+20
| | | | | | | | metze
| * s3:smbd: remove pointless static variable in uid.cStefan Metzmacher2009-01-081-7/+4
| | | | | | | | | | | | | | | | We always free the value at the end of the function, so we don't need a static variable to hold just NULL for the time the function isn't executed. metze
| * s3:smbd: make static const in mangle_hash2.c really static constStefan Metzmacher2009-01-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | const char *foo, means a non-const pointer to a const char. const char * const foo, means a const pointer to a const char. char * const foo, would mean a const pointer to a non-const char. metze
| * s3:smbd: make const globals in mangle_hash2.c really static constStefan Metzmacher2009-01-081-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | const char *foo, means a non-const pointer to a const char. const char * const foo, means a const pointer to a const char. char * const foo, would mean a const pointer to a non-const char. metze
| * s3:smbd: make globals in utmp.c static constStefan Metzmacher2009-01-081-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | const char *foo, means a non-const pointer to a const char. const char * const foo, means a const pointer to a const char. char * const foo, would mean a const pointer to a non-const char. metze
| * s3:smbd: it's pointless to have a global magic_charStefan Metzmacher2009-01-081-4/+7
| | | | | | | | | | | | We call magic_char = lp_magicchar(p) each time it's used. metze
| * s3:smbd: remove pointless static variables in chgpasswd.cStefan Metzmacher2009-01-081-9/+10
| | | | | | | | metze
| * s3:smbd: make fake_files[] static constStefan Metzmacher2009-01-081-1/+1
| | | | | | | | metze
| * s3:smbd: make mangle_fns constStefan Metzmacher2009-01-084-13/+13
| | | | | | | | metze
| * s3-svcctl: remove old hand marshalling of svcctl_QueryServiceConfig2W.Günther Deschner2009-01-083-229/+0
| | | | | | | | Guenther
| * s3-svcctl: use pidl for _svcctl_QueryServiceConfig2W.Günther Deschner2009-01-082-39/+36
| | | | | | | | Guenther
| * s3-svcctl: fix return code for _svcctl_QueryServiceStatusEx.Günther Deschner2009-01-081-2/+3
| | | | | | | | Guenther
| * s3-svcctl: remove old hand marshalling of svcctl_QueryServiceStatusEx.Günther Deschner2009-01-084-104/+2
| | | | | | | | Guenther
| * s3-svcctl: use pidl for _svcctl_QueryServiceStatusEx.Günther Deschner2009-01-082-31/+20
| | | | | | | | Guenther
| * s4-smbtorture: use names for info level in test_QueryServiceStatusEx.Günther Deschner2009-01-081-1/+1
| | | | | | | | Guenther
| * s4-smbtorture: add my copyright to svcctl test.Günther Deschner2009-01-081-0/+1
| | | | | | | | Guenther
| * s3-svcctl: use pidl's ndr opcodes for NDR_SVCCTL_QUERYSERVICECONFIGW.Günther Deschner2009-01-081-1/+1
| | | | | | | | Guenther
| * s3: re-run make samba3-idl.Günther Deschner2009-01-085-66/+629
| | | | | | | | Guenther