summaryrefslogtreecommitdiff
path: root/source3
AgeCommit message (Collapse)AuthorFilesLines
2010-09-10s3-waf: use proper RPC_X_SRC names.Günther Deschner1-20/+15
This allows to build using waf without --enable-developer and should also fix support for rpc server modules. Guenther
2010-09-10s3-build: only link LIBNDR_XATTR_OBJ where needed.Günther Deschner1-2/+2
Guenther
2010-09-10s3-waf: only link LIBNDR_XATTR_SRC where needed.Günther Deschner1-2/+2
Guenther
2010-09-10s3-build: link ndr_notify only where needed.Günther Deschner1-2/+2
Guenther
2010-09-10s3-waf: link ndr_notify only where needed.Günther Deschner1-2/+2
Guenther
2010-09-10s3-build: link ndr_named_pipe_auth only where needed.Günther Deschner1-2/+2
Guenther
2010-09-10s3-waf: link ndr_named_pipe_auth only where needed.Günther Deschner1-2/+2
Guenther
2010-09-10s3-spoolss: allow a short printername w/o servername.Günther Deschner1-6/+1
Verified with RPC-SPOOLSS-PRINTSERVER-enumprinters_old test. Guenther
2010-09-09Fox missing SMB_MALLOC return checks noticed by "Andreas Moroder ↵Jeremy Allison5-3/+34
<andreas.moroder@gmx.net>". Jeremy.
2010-09-09More paranoia to ensure SD's can't be set on read-only shares.Jeremy Allison1-0/+4
Jeremy.
2010-09-10s3-selftest: rename printer "print4" to "lp".Günther Deschner1-1/+1
This should trigger a false error condition in our code. Guenther
2010-09-09s3: Ensure NULL termination for "workstation" in auth_crapVolker Lendecke1-0/+2
2010-09-09s3-nmbd: use NETLOGON_NT_VERSION_1 in LOGON_PRIMARY_RESPONSE.Günther Deschner1-1/+1
Guenther
2010-09-09s3: These assignments are overwritten immediatelyVolker Lendecke1-4/+0
Dump them
2010-09-09s3-nmbd: use autogenerated marshalling for LOGON_SAM_LOGON_REQUEST.Günther Deschner1-301/+94
Guenther
2010-09-09s3-nmbd: use autogenerated marshalling for LOGON_PRIMARY_QUERY.Günther Deschner1-109/+33
Couldn't find any reproducer for a short request, so removing it for now. Guenther
2010-09-09s3-nmbd: use autogenerated marshalling for LOGON_REQUEST.Günther Deschner1-47/+29
Guenther
2010-09-09s3-nmbd: handle source_name in one location in nmbd_process_logon().Günther Deschner1-5/+4
Guenther
2010-09-09s3-nmbd: use nbt_netlogon_packet in process_logon_packet().Günther Deschner1-5/+24
Guenther
2010-09-09s3-printing: Make missing auth_serversupplied_info const.Andreas Schneider1-3/+3
2010-09-09s3-spoolss: Use systerm server_info for winreg connection.Andreas Schneider1-88/+162
This will ensure that we have the rights we need to access the regsitry.
2010-09-09s3-spoolss: Make auth_serversupplied_info const.Andreas Schneider3-63/+63
2010-09-09s3-printing: Make auth_serversupplied_info const.Andreas Schneider4-30/+30
2010-09-09s3-msdfs: Make auth_serversupplied_info const.Andreas Schneider2-2/+2
2010-09-09s3-rpcint: Make auth_serversupplied_info const.Andreas Schneider2-5/+5
2010-09-09s3-auth: Added get_server_info_system function.Andreas Schneider2-0/+6
2010-09-09s3-spoolss: Fixed some build warnings.Andreas Schneider1-7/+11
2010-09-09s3-utils: remove unused variable in smbget.Günther Deschner1-1/+0
Guenther
2010-09-09s3: Remove "mem_ctx" from a few functionsVolker Lendecke3-13/+3
2010-09-09s3: Remove "mem_ctx" from wcache_save_creds()Volker Lendecke3-3/+1
2010-09-09s3: Remove "mem_ctx" from lookup_cached_name()Volker Lendecke4-8/+4
2010-09-09s3: Remove a nested if-statementVolker Lendecke1-5/+3
2010-09-09s3: Fill in workstation in winbindd_pam_auth_crap_sendVolker Lendecke2-6/+5
2010-09-09s3: Fill in domain in winbindd_pam_auth_crap_sendVolker Lendecke2-11/+3
2010-09-09s3: Remove redundant flag checksVolker Lendecke1-10/+0
We're checking these in the parent already (winbindd_pam_auth_send and winbindd_pam_auth_crap_send). No point in doing it in the child as well
2010-09-09s3: Remove unused arg "user_sid" from winbindd_store_credsVolker Lendecke3-11/+5
All callers have passed in NULL
2010-09-09s3: Remove unused winbindd_update_creds_by_sidVolker Lendecke2-12/+0
2010-09-09s3: Remove unused winbindd_dual_show_sequence()Volker Lendecke3-25/+0
2010-09-08Don't rely on the underlying ACL modules to enforce share levelJeremy Allison2-0/+10
security when setting ACLs, check at the call level as well. Jeremy.
2010-09-08Optimization suggested by Metze. Without this patch,Jeremy Allison1-1/+97
FindFirst with 'path\to\some\dir\with\files\*' triggers the following stat calls path\to\some\dir\with\files\* => ENOENT path\ path\to\ path\to\some\ path\to\some\dir\ path\to\some\dir\with\ path\to\some\dir\with\files\ path\to\some\dir\with\files\* => ENOENT With this patch we get : path\to\some\dir\with\files\* => ENOENT path\to\some\dir\with\files = OK Jeremy.
2010-09-08s3: "== false" looks wrong :-)Volker Lendecke1-1/+1
2010-09-08Fix warnings caused by double ";;" at the end of the time_mono() fixes.Jeremy Allison1-3/+3
2010-09-08s3: use time_mono throughout in smbgetBjörn Jacke1-6/+5
2010-09-08s3/ldap: use monotonic clock for timeouts in smbldapBjörn Jacke2-20/+26
tevent would need monotonic clock features to make also smbldap's idle handling aware of backward clock jumps. Other areas in smbldap are clock jump save now.
2010-09-08s3: Make winbind_add_failed_connection_entry staticVolker Lendecke2-6/+4
2010-09-08s3: Fix a typoVolker Lendecke1-1/+1
2010-09-08s3-nmbd: fix indentation in process_logon_packet().Günther Deschner1-523/+519
purely cosmetic, no code change. Guenther
2010-09-08s3-nmbd: remove trailing whitespace in nmbd_processlogon.cGünther Deschner1-9/+9
Guenther
2010-09-08s3-spoolss: Move spoolss winreg to new dcerpc client funtions.Andreas Schneider1-347/+389
2010-09-08s3: Simplify cm_connect_sam a bitVolker Lendecke1-5/+1