summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | --enable-libwbclient-sharedVolker Lendecke2008-01-102-25/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds the configure option --enable-libwbclient-shared that defaults to yes. If you set --enable-developer=yes, then you can say --enable-libwbclient-shared=no to avoid problems you might have with the wrong shared libaries. Jerry, is this acceptable to you? If yes, please push. Thanks! Volker
| | * | Tiny cosmetic fixVolker Lendecke2008-01-101-2/+1
| | | |
| | * | Remove redundant parameter fd from SMB_VFS_WRITE().Michael Adam2008-01-109-22/+22
| | | | | | | | | | | | | | | | Michael
| | * | Remove redundant parameter fd from SMB_VFS_READ().Michael Adam2008-01-109-21/+22
| | | | | | | | | | | | | | | | Michael
| * | | Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2008-01-080-0/+0
| |\ \ \ | | | | | | | | | | | | | | | v3-2-test
| * | | | ensure uni_name.buffer is initialisedJeremy Allison2008-01-081-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | merge from http://samba.org/~tridge/3_0-ctdb Jeremy.
* | | | | Set the "stable" vendor string in VERSION.Gerald (Jerry) Carter2008-01-101-1/+1
| |_|/ / |/| | |
* | | | Move transfer_file and transfer_file_internal to a module of their own.Michael Adam2008-01-105-88/+147
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, don't auto-generate prototypes of the (two) exported functions but make a start in having handwritten prototypes in dedicated header files (not in includes.h ... :-) Michael
* | | | Reformat some code I just touched.Michael Adam2008-01-101-12/+20
| | | | | | | | | | | | | | | | Michael
* | | | Make casts to (void *) explicit to remove compiler warnings.Michael Adam2008-01-101-1/+2
| | | | | | | | | | | | | | | | Michael
* | | | Fix a really silly typo.Michael Adam2008-01-101-1/+1
| | | | | | | | | | | | | | | | Michael
* | | | Correctly abstract the transfer_file mechanism with callbacks and void ptrs.Michael Adam2008-01-102-16/+32
| | | | | | | | | | | | | | | | | | | | | | | | This removes the in_fsp and out_fsp global variables hack from smbd/vfs.c. Michael
* | | | use talloc_tos() in share_access_check()Volker Lendecke2008-01-101-8/+3
| | | |
* | | | Some more talloc_tos()Volker Lendecke2008-01-103-13/+13
| | | |
* | | | use talloc_tos in a few more placesVolker Lendecke2008-01-107-16/+18
| | | |
* | | | Remove unused string.Günther Deschner2008-01-102-5/+2
| | | | | | | | | | | | | | | | Guenther
* | | | Fix a c++ warningVolker Lendecke2008-01-101-1/+2
| | | |
* | | | talloc_free_children can only reset pool if it's emptyVolker Lendecke2008-01-101-1/+2
| | | |
* | | | Mark talloc_pool memory for valgrindVolker Lendecke2008-01-101-3/+16
| | | |
* | | | Fix suspicious Makefile lineVolker Lendecke2008-01-101-2/+2
| | | | | | | | | | | | | | | | | | | | If @WINBIND_KRB5_LOCATOR@ is not defined, this leads to a line with just one tab in.
* | | | Form a proper hierarchy in talloc_stackVolker Lendecke2008-01-101-3/+10
| | | | | | | | | | | | | | | | | | | | This way talloc_stackframe() can benefit from a pool put on the stack further up. No need to remove talloc_stackframe().
* | | | Fixup hot paths - add macro for toupper (c < 0x80).Jeremy Allison2008-01-093-11/+36
| | | | | | | | | | | | | | | | | | | | This now matches 3.0.x on my micro-tests. Jeremy.
* | | | Make use of talloc_pool in the main codepaths. Remove the sub-contexts.Jeremy Allison2008-01-096-52/+12
| | | | | | | | | | | | | | | | Jeremy.
* | | | Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2008-01-092-0/+3
|\ \ \ \ | | | | | | | | | | | | | | | v3-2-test
| * | | | Try and fix the AIX build.Michael Adam2008-01-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The __ss_family workaround is in lib/replace/system/network.h ... Michael
| * | | | Enable building the notify_fam module.Michael Adam2008-01-101-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Found by Timur I. Bakeyev <timur@com.bat.ru>. Michael
* | | | | Add the calls to make use of talloc_pools in a talloc_stackframe.Jeremy Allison2008-01-092-2/+17
| | | | | | | | | | | | | | | | | | | | Jeremy.
* | | | | Implement talloc_pool()Volker Lendecke2008-01-093-7/+207
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A talloc pool is a chunk of memory that can be used as a context for further talloc calls. Allocations with the pool as the parent just chew from that memory by incrementing a pointer. If the talloc pool is full, then we fall back to the normal system-level malloc(3) to get memory. The use case for talloc pools is the transient memory that is used for handling a single SMB request. Incrementing a pointer will be way faster than any malloc implementation. There is a downside of this: If you use talloc_steal() to move something out of the pool, the whole pool memory is kept around until the last object inside the pool is freed. So if you talloc_free() the pool, it might happen that the memory is freed later. So don't hang anything off a talloc pool that should live long. Volker
* | | | Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2008-01-094-5/+6
|\ \ \ \ | | | | | | | | | | | | | | | v3-2-test
| * | | | Fix the max_dead_record calculationsVolker Lendecke2008-01-091-4/+1
| | | | |
| * | | | Try to fix the build on hosts that HAVE_LDAP but don't HAVE_KRB5.Michael Adam2008-01-091-0/+3
| | | | | | | | | | | | | | | | | | | | Michael
| * | | | Fix a memleak found by the IBM checker.Michael Adam2008-01-091-0/+1
| | | | | | | | | | | | | | | | | | | | Michael
| * | | | Fix memleak in ldapsam_rename_sam_account() found by IBM checker.Michael Adam2008-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The check for out of memory was the wrong way round. Michael
* | | | | Try and fix the AIX build.Jeremy Allison2008-01-091-1/+9
| | | | | | | | | | | | | | | | | | | | Jeremy.
* | | | | Ensure we don't take address of one past buffer.Jeremy Allison2008-01-091-1/+1
|/ / / / | | | | | | | | | | | | Jeremy.
* | | | Another attempt to fix builds w/o ldap and/or krb5.Günther Deschner2008-01-091-9/+9
| | | | | | | | | | | | | | | | Guenther
* | | | Re-run make idl to get even nicer pidl generated server code.Günther Deschner2008-01-0912-10260/+10992
| | | | | | | | | | | | | | | | Guenther
* | | | Correct comment. Default debug level of smbclient is 1, not 0.Karolin Seeger2008-01-091-1/+1
| | | |
* | | | Attempt to fix the compile of source/utils/net_dns.cVolker Lendecke2008-01-091-5/+7
| | | | | | | | | | | | | | | | Jeremy, please check!
* | | | Re-run make idl. The pidl generated code now fully complies to coding standards.Günther Deschner2008-01-0924-1830/+7842
| | | | | | | | | | | | | | | | Guenther
* | | | Fix memory handling in torture/cmd_vfs.c:cmd_open and don't leak fsp_name.Michael Adam2008-01-091-0/+13
| | | | | | | | | | | | | | | | Michael
* | | | Reduce stat cache size defaultVolker Lendecke2008-01-091-1/+1
| | | | | | | | | | | | | | | | Now that we have a LRU scheme for the stat cache we can live with a lot less
* | | | Replace an uninitialized variableVolker Lendecke2008-01-091-0/+2
| | | | | | | | | | | | | | | | Reported by the IBM checker
* | | | Add libnet_join_derive_salting_principal().Günther Deschner2008-01-091-0/+55
| | | | | | | | | | | | | | | | Guenther
* | | | Fix build warning for libsmbclient example.Günther Deschner2008-01-091-0/+2
| | | | | | | | | | | | | | | | Guenther
* | | | git-ignore generated files under examples/VFS/Michael Adam2008-01-091-0/+9
| | | | | | | | | | | | | | | | Michael
* | | | Ignore test directory.Michael Adam2008-01-091-0/+1
| |/ / |/| | | | | | | | Michael
* | | ensure uni_name.buffer is initialisedVolker Lendecke2008-01-091-0/+2
|/ / | | | | | | merge from http://samba.org/~tridge/3_0-ctdb
* | Fix CID 461 - resource leak on error.Jeremy Allison2008-01-081-0/+4
| | | | | | | | Jeremy.
* | Fix CID 460 - resource leak on error.Jeremy Allison2008-01-081-0/+1
| | | | | | | | Jeremy.