summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
| * Store a local schannel key in secrets.tdbVolker Lendecke2008-10-063-0/+29
| |
| * Fix some nonempty blank linesVolker Lendecke2008-10-051-25/+25
| |
| * Remove an unused variableVolker Lendecke2008-10-051-1/+0
| |
| * Fix some missing error handlingsVolker Lendecke2008-10-053-2/+8
| |
| * OS/X does not have rl_done in readline.hVolker Lendecke2008-10-051-0/+8
| |
| * Fix an uninitialized variable warningVolker Lendecke2008-10-051-0/+2
| | | | | | | | Not sure if we can ever not get domain and dns_domain, but gcc complained
| * Fix an unlikely memleak found by the IBM checkerVolker Lendecke2008-10-041-0/+2
| |
| * Fix an uninitialized variable found by the IBM CheckerVolker Lendecke2008-10-041-0/+1
| |
| * Fix a potential NULL deref in line 258 found by the IBM checkerVolker Lendecke2008-10-041-0/+1
| |
| * "gwen/cc" does not like the double const :-)Volker Lendecke2008-10-041-1/+1
| |
| * Fix the build farm. In this branch cli_echo returns NTSTATUS.Jeremy Allison2008-10-031-1/+4
| | | | | | | | Jeremy
| * Correctly fix smbclient to terminate on eof from server.Jeremy Allison2008-10-033-3/+24
| | | | | | | | Jeremy.
| * Simply our main loop processing. A lot :-). Correctly use events for all the ↵Jeremy Allison2008-10-037-188/+148
| | | | | | | | | | | | | | | | previous "special" cases. A step on the way to adding signals to the events and being able to merge the S3 event system with the S4 one. Jeremy.
| * net_dns: Make "lwinet ads dns register" honor the "interfaces" parameter.Gerald (Jerry) Carter2008-10-031-13/+12
| | | | | | | | | | This is helpful on multihomed hosts that only require a subset of IP addresses be registered with DNS.
| * libaddns: Use the same prerequisite for DDNS update as Windows XP.Gerald (Jerry) Carter2008-10-031-2/+2
| | | | | | | | | | | | | | Hostname, TYPE: CNAME, CLASS: NONE This has to have been broken for ages. I cannot see how it would have worked in any environment.
| * Don't reject a successful alloc :-(.Jeremy Allison2008-10-021-1/+1
| | | | | | | | Jeremy.
| * Fix bug 5805: don't close stdoutDerrell Lipman2008-10-021-1/+3
| | | | | | | | | | | | | | | | - When calling setup_logging multiple times, the code was closing the debug file descriptor before opening or assigning the new one. We don't, however, want to close the debug file descriptor if it is stdout. Derrell
| * The IRIX compiler does not like embedded unnamed unionsVolker Lendecke2008-10-023-13/+13
| |
| * Attempt to fix the build on IRIXVolker Lendecke2008-10-024-6/+6
| | | | | | | | Under irix, "sa_family" is a #define to sa_union.sa_generic.sa_family2
| * Fix bug 5798: "CFLAGS info lost in configure"Volker Lendecke2008-10-021-1/+1
| | | | | | | | | | | | | | | | Michael, please check and merge to the other branches if it's right. Thanks, Volker
| * Fix bug #5080. Access to cups-printers via samba broken with cups 1.3.4, ↵Jeremy Allison2008-10-011-90/+251
| | | | | | | | | | | | | | | | | | Unsupported character set. Cups 1.3.4 expects utf8 to be used in all messages to/from the server. We may be using a different character set so we need to use talloc utf8 push/pull functions in all communication. Needs more testing. Don't release until I've done a thorough test. I also have a version for 3.2.x. Jeremy.
| * Whitespace cleanup.Jeremy Allison2008-10-011-16/+16
| | | | | | | | Jeremy.
| * Fix use of DLIST_REMOVE as spotted by Constantine Vetoshev <gepardcv@gmail.com>.Jeremy Allison2008-10-013-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This API is unusual in that if used to remove a non-list head it nulls out the next and prev pointers. This is what you want for debugging (don't want an entry removed from the list to be still virtually linked into it) but means there is no consistent idiom for use as the next and prev pointers get trashed on removal from the list, meaning you must save them yourself. You can use it one way when deleting everything via the head pointer, as this preserves the next pointer, but you *must* use it another way when not deleting everything via the head pointer. Fix all known uses of this (the main one is in conn_free_internal() and would not free all the private data entries for vfs modules. The other changes in web/statuspage.c and winbindd_util.c are not strictly neccessary, as the head pointer is being used, but I've done them for consistency. Long term we must revisit this as this API is too hard to use correctly. Jeremy.
| * Turn the socket connections into a refcounted list - in the common case ↵Jeremy Allison2008-10-011-44/+95
| | | | | | | | | | | | | | | | | | there'll now only be one socket per smbd. Changed the format of the wire data to (a) include a version number (V1) as the first element. (b) removed the ";)" at the end an replaced it with a "\n". Receiver can change back if needed, and now receiver can just log "as-is" to a text file (making testing easier). Added my (C). Sorry Holger, but I've changed quite a bit now. Jeremy.
| * Convert to allocated strings. Use write_data(), not send as this doesn't ↵Jeremy Allison2008-09-301-58/+42
| | | | | | | | | | | | | | correctly deal with EINTR. Jim and Holger please check this still works. Jeremy.
| * Revert erroneous commit.Jeremy Allison2008-09-301-1/+1
| | | | | | | | Jeremy.
| * Remove current_user_info - not needed.Jeremy Allison2008-09-302-5/+3
| | | | | | | | Jeremy.
| * Restructure the module so it connects to the remote data sinkJeremy Allison2008-09-301-150/+156
| | | | | | | | | | | | | | | | on connect, and closes the socket on client disconnect. This should make it much more efficient. Store the remote fd in a private data pointer off the handle. Finally we need to remove the fstrings and convert to allocated buffer storage. Jeremy.
| * Fix the make test problem Karolin reported. Now rename_open_files actually ↵Jeremy Allison2008-09-301-2/+2
| | | | | | | | | | | | works correctly we must emit the change notify before we change the name, not before. Jeremy.
| * Ensure we null out fsp after a close in all paths.Jeremy Allison2008-09-291-0/+1
| | | | | | | | Jeremy.
| * Avoid freeing fsp twice when opening new_file fails. (Debian #431696)Jelmer Vernooij2008-09-291-0/+1
| | | | | | | | | | If opening new_file fails, fsp would still be set to the files_struct of old_file.
| * s3:mapping_tdb: fix the del_aliasmem() functionStefan Metzmacher2008-09-291-3/+2
| | | | | | | | | | | | We should not cancel the transaction, when we want to delete a key. metze
| * re-added "winbind:ignore domains" patchAndrew Tridgell2008-09-291-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | This option really is essential, as we discover again and again at customer sites. Due to bugs in winbind some domains are toxic. When you are installing at a site and a particular domain in a complex setup causes winbind to segfault or hang then you need a way to disable that domain and continue. In an ideal world winbind could handle arbitrarily complex ADS domains, but we are nowhere near that yet. If we ever get to that stage then we won't need this option.
| * fixed an (unlikely) memory leakAndrew Tridgell2008-09-291-0/+1
| |
| * fixed a segfault on the ctdb destructor codeAndrew Tridgell2008-09-291-3/+10
| |
| * removed unused variablesAndrew Tridgell2008-09-291-2/+1
| |
| * fixed segv on startup with trusted domainsAndrew Tridgell2008-09-291-0/+16
| | | | | | | | | | | | With some setups, idmap_tdb2_allocate_id can be called before the allocate backend is initialised, leading to a segv. This change ensures that the db is opened in all paths that use it
| * [s3]fix build --with-cluster-support after ndr_[pull|push]_struct blob changes.Michael Adam2008-09-291-2/+2
| | | | | | | | Michael
| * s4:configure: require tdb >= 1.1.3 from the systemStefan Metzmacher2008-09-291-1/+1
| | | | | | | | metze
| * Fix async_connectVolker Lendecke2008-09-291-1/+2
| |
| * [s3]loadparm: refactor freeing of parameter data out and reduce memleak.Michael Adam2008-09-271-35/+53
| | | | | | | | | | | | | | | | | | | | | | Add new functions free_parameter(), free_parameters() and free_global_parameters() and use these in the appropriate places, reducing code duplication. Also, always TALLOC_FREE data of type P_LIST, thus reducing mem-leaks: This had not been done in init_globals before. Michael
| * [s3]loadparm: in lp_do_parameter() use function lp_local_ptr()Michael Adam2008-09-271-3/+1
| | | | | | | | | | | | instead of hard coded calculation. Michael
| * [s3]loadparm: remove superfluous talloc context / talloc_stackframe call.Michael Adam2008-09-271-5/+0
| | | | | | | | Michael
| * [s3]loadparm: refactor setting parametric options in list outMichael Adam2008-09-271-52/+45
| | | | | | | | | | | | | | into new function set_param_opt(). This unifies and clarifies two instances of the code. Michael
| * [s3]loadparm: fix memory error - free the right param_opt->list in copy_service.Michael Adam2008-09-271-1/+1
| | | | | | | | Michael
| * [s3]loadparm: refactor freeing of parametric options into free_param_opts().Michael Adam2008-09-271-41/+34
| | | | | | | | | | | | This code was there in three places. Michael
| * [s3]loadparm: rename process_registry_service() to process_smbconf_service().Michael Adam2008-09-271-3/+3
| | | | | | | | | | | | There is nothing registry-specific in that function. Michael
| * [s3]testparm: give testparm one common exit point and call gfree_loadparm().Michael Adam2008-09-271-6/+13
| | | | | | | | Michael
| * [s3]testparm: free the popt context when it is no longer used.Michael Adam2008-09-271-0/+2
| | | | | | | | Michael
| * [s3]build: build the new test_lp_load command.Michael Adam2008-09-271-0/+11
| | | | | | | | Michael