summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* s3:ntlmssp: remove unused ntlmssp_stored_response()Stefan Metzmacher2009-12-293-32/+1
| | | | metze
* s3:ntlmssp: remove unused ref_count from ntlmssp_stateStefan Metzmacher2009-12-292-13/+4
| | | | metze
* s3:ntlmssp: fix whitespace in ntlmssp.hStefan Metzmacher2009-12-291-1/+1
| | | | metze
* s3:ntlmssp: fix spellingStefan Metzmacher2009-12-291-1/+1
| | | | metze
* s3:ntlmssp: rename NTLM_MESSAGE_TYPE into ntlmssp_message_typeStefan Metzmacher2009-12-292-2/+2
| | | | metze
* s3: Check for lp_winbind_trusted_domains_only in wb_gettoken()Volker Lendecke2009-12-282-24/+7
| | | | This avoids one walk of the domain list
* s3: Move a lp_winbind_trusted_domains_only() check to wb_getgrsid()Volker Lendecke2009-12-282-22/+12
| | | | winbindd_getgrgid was not protected by this.
* s3: Pass netr_DomainTrustList instead of names and sids through ↵Volker Lendecke2009-12-287-182/+98
| | | | (*trusted_domains)
* s3: Simplify winbindd_ads.c:trusted_domains()Volker Lendecke2009-12-281-110/+123
| | | | | | | | | | | | | | | No real code change, this just removes an indentation by turning if ( NT_STATUS_IS_OK(result) && trusts.count) { into if (!NT_STATUS_IS_OK(result)) { return result; } if (trusts.count == 0) { return NT_STATUS_OK; }
* s3: Remove some unused codeVolker Lendecke2009-12-281-101/+0
| | | | Watch the #if 0 -- we never stored this in the cache anymore
* s3: Simplify winbindd_list_trusted_domains() slightlyVolker Lendecke2009-12-281-31/+23
|
* s3: Simplify "setup_domain_child" slightlyVolker Lendecke2009-12-282-3/+1
|
* s3:winbind Make the normal client exit message a bit more understandableVolker Lendecke2009-12-261-2/+7
|
* s3: Fix a typo found by Matthias Dieter Wallnöfer <mdw@samba.org> -- thanks :-)Volker Lendecke2009-12-261-1/+1
|
* s3: Fix a bogus uninitialized variable warningVolker Lendecke2009-12-261-1/+1
|
* s3: Replace IS_DOMAIN_OFFLINE by a functionVolker Lendecke2009-12-266-9/+16
|
* s3: Fix some nonempty blank linesVolker Lendecke2009-12-262-5/+5
|
* s3: winbindd_cli_state->getgrent_state is no longer usedVolker Lendecke2009-12-264-39/+0
|
* s3: getgrent_state has been replaced by grent_stateVolker Lendecke2009-12-261-1/+1
|
* s3: Remove unused delete_negative_conn_cache()Volker Lendecke2009-12-242-24/+0
|
* s3: Remove unused flush_negative_conn_cache()Volker Lendecke2009-12-242-10/+0
|
* s3: Remove some unnecessary variables from libsmb/conn_cache.cVolker Lendecke2009-12-241-9/+4
|
* s3: Fix a comment in conn_cache.cVolker Lendecke2009-12-241-1/+1
|
* s3: Fix a 64-bit errorVolker Lendecke2009-12-241-4/+5
|
* s3: Remove some pointless SMB_ASSERTsVolker Lendecke2009-12-241-3/+10
|
* s3: Remove some pointless castsVolker Lendecke2009-12-241-5/+4
|
* Attempt to fix one of the last two bugs with the full Windows ACL support.Jeremy Allison2009-12-231-0/+106
| | | | | | | | | | | | | | | | | | When returning an underlying ACL on a directory, normally on a POSIX system it has no inheritable entries, which breaks the Windows ACL when a user does a get/set of a Windows ACL on a POSIX directory with no existing stored Windows ACL from the Windows ACL editor. What happens is any new entry added by the user gets set inheritable, but none of the others entries are (as returned by default). So any new files then only inherit the single new ACE entry (the one marked inheritable by the ACL editor). Fix this by faking up a default 3 element inheritable ACL that represents what a user creating a POSIX file or directory will get by default from the smbd code. Jeremy.
* The posix acl version of set_nt_acl() could set the stat_exJeremy Allison2009-12-232-7/+19
| | | | | | | | struct in the fsp->fsp_name pointer incorrectly for a directory. Fix this. Make map_canon_ace_perms() public. Jeremy.
* s3: wbinfo --ping-dc is not cacheableVolker Lendecke2009-12-231-0/+1
|
* s3: Remove some unused codeVolker Lendecke2009-12-234-164/+0
|
* s3: Remove unused sendto_child()Volker Lendecke2009-12-232-9/+0
|
* s3-net: use generated krb5.conf in 'net ads testjoin'Günther Deschner2009-12-231-0/+4
| | | | Guenther
* s3:ntlmssp: only include ntlmssp.h where actually neededAndrew Bartlett2009-12-2215-1/+17
| | | | Andrew Bartlett
* s3:ntlmssp: remove the typedef NTLMSSP_STATEAndrew Bartlett2009-12-229-53/+53
| | | | Andrew Bartlett
* s3:ntlmssp: move to C99 integer types in ntlmssp.hAndrew Bartlett2009-12-221-5/+5
| | | | Andrew Bartlett
* s3:ntlmssp: rename enum NTLMSSP_ROLE into enum ntlmssp_roleAndrew Bartlett2009-12-222-3/+3
| | | | Andrew Bartlett
* libcli/auth Make gd's NDR NTLMSSP parsers helpers commonAndrew Bartlett2009-12-224-191/+2
| | | | (but not built in Samba4 for now)
* s3: Restore correct timeouts for SMB requestsVolker Lendecke2009-12-221-0/+5
|
* s3: Remove a pointless else branchVolker Lendecke2009-12-221-5/+3
|
* s3: Move smb_splice_chain to smbd/process.c, its only userVolker Lendecke2009-12-223-179/+174
|
* Fix bug reported in mangle_hash code (no bugid yet).Jeremy Allison2009-12-211-0/+9
| | | | | | | Don't change the contents of a const string via a pointer alias (or if you do, change it back.....). Jeremy.
* s3:winbind: Add a lower-cost alternative to wbinfo -t: wbinfo --ping-dcVolker Lendecke2009-12-2113-5/+442
| | | | | | This just does a NULL RPC call through an existing NETLOGON connection. If someone knows an operation that "just works" and does not return NOT_SUPPORTED, please tell me :-)
* s3:winbindd: Fix a brown paper bag bug in wbinfo -t ...Volker Lendecke2009-12-211-1/+1
|
* Rename reply_doserror() -> reply_force_doserror().Jeremy Allison2009-12-216-31/+23
| | | | | | | Rewrite all calls to reply_nterror(NT_STATUS_DOS()) to reply_force_doserror() and update the comment in smbd/error.c Jeremy.
* Remove all calls to reply_doserror - turn them intoJeremy Allison2009-12-216-120/+121
| | | | | | | correct reply_nterror calls. Next rename reply_doserror -> reply_force_doserror and plumb in when NT_STATUS_DOS is used. Jeremy.
* Rename 282 -> ERReasnotsupported.Jeremy Allison2009-12-211-3/+3
| | | | Jeremy.
* s3: Shrink winbindd_proto.h a bitVolker Lendecke2009-12-211-71/+0
|
* s3: Fix some nonempty blank linesVolker Lendecke2009-12-212-14/+14
|
* s3: Remove unused get_sam_group_entriesVolker Lendecke2009-12-212-136/+0
|
* s3: Remove unused winbindd_dual_getsidaliasesVolker Lendecke2009-12-213-93/+0
|