summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* s3: Re-initialize the server_id in messaging_reinitVolker Lendecke2010-07-043-5/+9
|
* s3: Fix some type-punned warningsVolker Lendecke2010-07-042-7/+10
|
* s3: Fix some nested extern warningsVolker Lendecke2010-07-041-2/+3
|
* s3: Remove serverid_[de]register_selfVolker Lendecke2010-07-048-48/+28
| | | | This removes some deep references to procid_self()
* s3: ALWAYS run make test before checkin ....Volker Lendecke2010-07-041-2/+2
|
* s3: Slight reshaping of server_exists_parseVolker Lendecke2010-07-041-4/+6
| | | | Doing a copy and then do the compare is a bit pointless, use memcmp
* s3: Don't attempt to deregister from serverid twiceVolker Lendecke2010-07-041-1/+6
| | | | | The parent has to take care of crashed child processes anyway, so we don't have to clean up in the child
* s3: Fix bug 7338, smbget skips leading slash when using a custom outputfileVolker Lendecke2010-07-041-6/+16
|
* s3: Fix some nonempty blank linesVolker Lendecke2010-07-041-10/+10
|
* s3: Fix bug 7336: Enable idmap_passdb module build as sharedVolker Lendecke2010-07-041-0/+4
|
* s3-net: forgot to set type in winreg getvalue operation.Günther Deschner2010-07-021-0/+2
| | | | Guenther
* s3-registry: remove 2 byte winreg type limitation.Günther Deschner2010-07-022-5/+5
| | | | | | | | | We already pull and push 4 byte winreg type in the registry.tdb, we were just not using full 4 bytes within the reg_object functions. With this change we finally pass the set extended value torture test. Guenther
* s3-registry: allow to read NULL entries (that we allow to store) back from ↵Günther Deschner2010-07-021-6/+2
| | | | | | the tdb. Guenther
* s3-registry: remove unused reg_util_marshalling code.Günther Deschner2010-07-027-256/+0
| | | | Guenther
* s3-registry: avoid using registry_value union.Günther Deschner2010-07-0211-181/+225
| | | | | | Just pull and push data as is. Guenther
* s3:auth Fix switch statement referencing a uninitialized variableSimo Sorce2010-07-011-1/+1
| | | | | | | Looking at the original commit (9a747d500fad699038ecf75615c680a9fd9e4cc7) this seem the right solution. Andrew please check.
* s3-nss_info: only include nss_info.h where needed.Günther Deschner2010-07-015-1/+4
| | | | Guenther
* s3-libads: move ldap posix schema defines to their own header file.Günther Deschner2010-07-016-65/+65
| | | | Guenther
* s3-libads: move spnego defines to their appropriate header file.Günther Deschner2010-07-011-6/+0
| | | | Guenther
* s3-libads: only include libds flags where needed.Günther Deschner2010-07-0111-2/+11
| | | | Guenther
* s3-libads: move keytab macros out of ads.h.Günther Deschner2010-07-013-18/+21
| | | | Guenther
* s3-libads: move ads_dns out of main includes.Günther Deschner2010-07-019-32/+35
| | | | Guenther
* s3-libads: move ads_status to a separate header file.Günther Deschner2010-07-014-43/+43
| | | | Guenther
* s3-libads: move ads_protos.h to ads_ldap_protos.h.Günther Deschner2010-07-012-20/+20
| | | | Guenther
* s3-waf: fix the build after smbd/change_trust_pw.c removal.Günther Deschner2010-07-011-1/+1
| | | | Guenther
* s3-libnet_join: small IDL enhancement.Günther Deschner2010-07-012-4/+2
| | | | Guenther
* s3-libads: use shared well known guids.Günther Deschner2010-07-013-6/+3
| | | | Guenther
* s3-libads: move KRB5_ENV_CCNAME to separate header krb5_env.h.Günther Deschner2010-07-013-3/+3
| | | | Guenther
* s3-printing: Fix Bug #7541, %D in "printer admin" causing smbd crash.Günther Deschner2010-07-012-8/+17
| | | | Guenther
* s3-registry: fix malloc/talloc mismatch upon free in reg_enumvalue().Günther Deschner2010-07-011-1/+1
| | | | Guenther
* s3-libsmb: move change_trust_account_password out of smbd into libsmb.Günther Deschner2010-06-304-107/+76
| | | | Guenther
* s3-winreg: implement _winreg_QueryMultipleValues().Günther Deschner2010-06-301-6/+15
| | | | Guenther
* s3-winreg: implement _winreg_QueryMultipleValues2().Günther Deschner2010-06-301-5/+114
| | | | Guenther
* s3-registry: add reg_querymultiplevalues() to reg_api.Günther Deschner2010-06-302-0/+56
| | | | Guenther
* s3-utils: remove rpccheck.Günther Deschner2010-06-291-62/+0
| | | | | | Impossible to get this to compile after the conversion to pidl. Guenther
* s3-client: Make sure we only write to an opened file.Andreas Schneider2010-06-291-4/+10
| | | | Found by clang-analyzer.
* s3-net: Make sure we don't call free on garbage.Andreas Schneider2010-06-291-1/+1
| | | | Found by clang-analyzer.
* s3-net: Use talloc_asprintf and return if file is in wrong format.Andreas Schneider2010-06-291-19/+16
| | | | Found by clang-analyzer.
* s3: Change exit on immediate socket failure.Ira Cooper2010-06-281-4/+4
| | | | | | | This change makes it so socket errors early in the smbd child process cause orderly exits not coredumps. Signed-off-by: Jeremy Allison <jra@samba.org>
* s3: Make some routines static in smbldapVolker Lendecke2010-06-282-4/+2
|
* s3-registry: missed one perflib keyname delimiter.Günther Deschner2010-06-281-1/+1
| | | | Guenther
* s3: More cleanup in winbindd_ads.c:query_userVolker Lendecke2010-06-281-13/+10
| | | | We can't ads_msgfree after the ads struct has been killed. Do early returns.
* s3: Fix a valgrind errorVolker Lendecke2010-06-281-2/+1
| | | | nss_get_info_cached does not necessarily fill in gid
* s3: Re-arrange winbindd_ads.c:query_userVolker Lendecke2010-06-281-23/+24
| | | | | We can't access the LDAP message after nss_get_info_cached has potentially destroyed the ads_struct
* s3: free -> SAFE_FREEVolker Lendecke2010-06-281-1/+1
|
* s3: Do an early TALLOC_FREEVolker Lendecke2010-06-281-2/+5
|
* s3-registry: fix printing keyname delimiter.Günther Deschner2010-06-281-8/+8
| | | | Guenther
* s3-registry: fix perfmon keyname delimiter.Günther Deschner2010-06-281-2/+2
| | | | Guenther
* s3-net: Make sure that the data blob is initialized.Andreas Schneider2010-06-281-0/+2
| | | | Found by clang-analyzer.
* s3-eventlog: Fixed the keyname delimiter for the registry key.Andreas Schneider2010-06-281-1/+1
|