summaryrefslogtreecommitdiff
path: root/source3/lib
AgeCommit message (Collapse)AuthorFilesLines
2010-08-17s3: Lift smbd_server_fd() from read_smb_length_return_keepaliveVolker Lendecke1-13/+24
2010-08-17s3: Lift smbd_server_fd() from read_data()Volker Lendecke1-19/+1
All callers have appropriate debug messages themselves
2010-08-17s3: Lift smbd_server_fd() from read_fd_with_timeout()Volker Lendecke1-43/+44
2010-08-17s3-util: remove unused variable.Günther Deschner1-1/+0
Guenther
2010-08-17s3: Remove smbd_server_fd() from write_data()Volker Lendecke1-20/+1
This completely removes the DEBUG(0, ..) error message from write_data(). I've gone through all callers of write_data() and made sure that they have their own equivalent error message printing.
2010-08-16s3: Simplify the logic of check_access by an early returnVolker Lendecke1-34/+32
2010-08-16s3: Fix some type-punned warningsVolker Lendecke1-1/+3
2010-08-16s3: Remove get_client_fd()Volker Lendecke3-10/+13
2010-08-08s3: Remove smbd_messaging_context from dummysmbdVolker Lendecke1-5/+0
2010-08-07s3: Remove procid_self() from connections_fetch_entry()Volker Lendecke1-1/+2
2010-08-07s3: Remove smbd_messaging_context() from send_stat_cache_delete_message()Volker Lendecke1-1/+2
2010-08-07s3: Remove an unnecessary NULL checkVolker Lendecke1-1/+1
Now that connections.tdb is not used for the broadcast messaging anymore, connections_fetch_entry is only called for real connections.
2010-08-06s3-netlogon: remove global include of netlogon.h.Günther Deschner4-3/+4
This reduces precompiled headers by another 4 MB and also slightly speeds up the build. Guenther
2010-08-06s3: fail db_open_ctdb if ctdb is not aroundVolker Lendecke1-0/+5
2010-08-05s3: Remove some pointless wrapper functionsVolker Lendecke1-19/+0
2010-08-05s3: Remove some pointless wrapper functionsVolker Lendecke1-17/+1
2010-08-05s3-popt: Only include popt-common.h when needed.Andreas Schneider4-0/+4
2010-08-05s3-secrets: only include secrets.h when needed.Günther Deschner5-0/+5
Guenther
2010-08-05s3: avoid global include of ads.h.Günther Deschner2-5/+1
Guenther
2010-08-01s3: Fix a C++ warningVolker Lendecke1-1/+1
2010-08-01s3: Fix an uninitialized variableVolker Lendecke1-1/+1
2010-07-28s3-lib: Remove redefinition of RL_COMPLETION_CAST.Andreas Schneider1-7/+0
This is already defined in replace/system/readline.h.
2010-07-27s3-lib: Make the standard_mapping parameter const.Andreas Schneider1-1/+1
Signed-off-by: Jim McDonough <jmcd@samba.org>
2010-07-27Fix several places where talloc_asprintf returns were unchecked.Jeremy Allison1-0/+13
Jeremy.
2010-07-26s3: Log the correct core path on Linux if core_pattern is setVolker Lendecke1-2/+55
Contributions from Bill Hymas, IBM
2010-07-20Fix warning on 64-bit machines.Jeremy Allison1-1/+1
Jeremy.
2010-07-20s3: Fix two uninitialized variablesVolker Lendecke1-2/+2
2010-07-13s3-libnet: better separate headers.Günther Deschner1-1/+2
Guenther
2010-07-13s3-ldb: fix build warning.Günther Deschner1-44/+1
Guenther
2010-07-05samr.idl:UserInfo structures - fix some names according to MS-SAMR documentationMatthias Dieter Wallnöfer1-2/+2
See MS-SAMR section "FULL IDL"
2010-07-05s3: Remove procid_self() from ctdb_read_req() and ctdb_handle_message()Volker Lendecke1-4/+8
2010-07-05s3: Remove some type-punned warningsVolker Lendecke1-5/+5
2010-07-05s3: Put serverid_key and serverid_data togetherVolker Lendecke1-5/+5
2010-07-05s3: Add sconn_server_id()Volker Lendecke1-0/+26
2010-07-05s3: Add messaging_server_idVolker Lendecke1-0/+5
2010-07-05s3: Pass procid_self() explicitly to messaging_ctdbd_connection()Volker Lendecke4-11/+17
2010-07-04s3: Remove an unused variable -- thanks, metze!Volker Lendecke1-2/+1
2010-07-04s3: Replace register_message_flags() with serverid_register_msg_flags()Volker Lendecke1-0/+52
message_send_all is now done by walking the serverid.tdb, not the connections.tdb anymore. Günther, Simo, please check!
2010-07-04s3: Use msg_ctx->id in messagingVolker Lendecke2-5/+6
This removes some references to procid_self() deep inside the code
2010-07-04s3: Pass the new server_id through reinit_after_forkVolker Lendecke1-1/+2
2010-07-04s3: Re-initialize the server_id in messaging_reinitVolker Lendecke2-4/+7
2010-07-04s3: Remove serverid_[de]register_selfVolker Lendecke1-21/+5
This removes some deep references to procid_self()
2010-07-04s3: ALWAYS run make test before checkin ....Volker Lendecke1-2/+2
2010-07-04s3: Slight reshaping of server_exists_parseVolker Lendecke1-4/+6
Doing a copy and then do the compare is a bit pointless, use memcmp
2010-07-02s3-registry: avoid using registry_value union.Günther Deschner1-20/+48
Just pull and push data as is. Guenther
2010-07-01s3-libads: only include libds flags where needed.Günther Deschner1-0/+1
Guenther
2010-06-28s3: Make some routines static in smbldapVolker Lendecke1-2/+2
2010-06-25s3-registry: Convert registry key delimiter from slash to backslash.Andreas Schneider1-6/+6
This is needed to support keynames containing a '/' like TCP/IP. Which is used in serveral standard paths. Signed-off-by: Michael Adam <obnox@samba.org>
2010-06-22Fix bug 7528 - Solaris with NIS autohome.Jeremy Allison1-0/+3
Ensure entries containing "\n" are stripped. Jeremy.
2010-06-21tldap: Fix a type-punned warningVolker Lendecke1-1/+1