summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Check the return value of fgetsVolker Lendecke2008-02-231-1/+4
| |
| * make idl: Check return value of asprintfVolker Lendecke2008-02-2317-250/+125
| |
| * Fix "used uninitialized" errors.Jeremy Allison2008-02-221-2/+6
| | | | | | | | Jeremy.
| * Fix debug messages.Jeremy Allison2008-02-221-4/+5
| | | | | | | | Jeremy.
| * Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2008-02-227-428/+45
| |\ | | | | | | | | | v3-2-test
| | * Make sure mount.cifs.c compiles on Fedora 9 with gcc 4.3Simo Sorce2008-02-221-0/+1
| | |
| | * Don't use fname after create_file has been calledVolker Lendecke2008-02-223-18/+18
| | | | | | | | | | | | | | | | | | | | | | | | create_file calls unix_convert internally, so modifies fname. So we can't use "fname" after create_file has returned. Use fsp->fsp_name instead. Found during a lengthy debugging session with Karolin testing the xattr_tdb module...
| | * libreplace: don't use socketwrapper for getifaddrs() implementations.Michael Adam2008-02-221-0/+2
| | | | | | | | | | | | Michael
| | * libreplace: Fix comment originating from old samba source.Michael Adam2008-02-221-1/+1
| | | | | | | | | | | | | | | Michael (cherry picked from commit 0440bcfe6359ca4842f473b1ca799cad9f1c6c96)
| | * Not all implementations of struct ifaddrs define ifa_broadaddr.Michael Adam2008-02-221-13/+3
| | | | | | | | | | | | | | | | | | E.g. the definition of libreplace doesn't. :-o Michael
| | * Remove the implementations of _get_interfaces and autoconf test in interfaces.cMichael Adam2008-02-221-386/+0
| | | | | | | | | | | | | | | | | | getifaddrs() is now provided by libreplace. Michael
| | * libreplace: fix creation of conftest files for getifaddrs tests.Michael Adam2008-02-221-4/+11
| | | | | | | | | | | | | | | | | | Add missing includes of replace.c and defines of SOCKET_WRAPPER_NOT_REPLACE. Michael
| | * Fix linked list of ifaddrs in implementations of rep_getifaddrs.Michael Adam2008-02-221-3/+3
| | | | | | | | | | | | | | | | | | Produce proper list instead of one-node-loop. Michael
| | * Add missing initalizations of lastif in rep_getifaddr implementations.Michael Adam2008-02-221-3/+6
| | | | | | | | | | | | Michael
| * | Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2008-02-211-1/+1
| |\| | | | | | | | | | v3-2-test
| | * Change option name.Karolin Seeger2008-02-211-1/+1
| | | | | | | | | | | | | | | | | | xattr:tdb -> xattr_tdb:file (according to the other vfs option names) Karolin
| * | Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2008-02-21120-10456/+18693
| |\| | | | | | | | | | v3-2-test
| | * libreplace: fix compile errors in getifaddrs.cMichael Adam2008-02-211-6/+3
| | | | | | | | | | | | Michael
| | * Try and fix getifaddrs check on irix: dont't try to include config.hMichael Adam2008-02-211-0/+3
| | | | | | | | | | | | | | | | | | The missing header file is judged "catastrophic" on irix. Michael
| | * Move the definition of SMB_LIBRARY to aclocal.m4.Michael Adam2008-02-212-67/+67
| | | | | | | | | | | | Michael
| | * configure: Abstract configuration of internal libs into an m4 macro.Michael Adam2008-02-211-125/+45
| | | | | | | | | | | | | | | | | | New subsystem libraries can now be added by specifying SMB_LIBRARY(name). Michael
| | * fix typoVolker Lendecke2008-02-211-1/+1
| | |
| | * Remove check for secure mkstemp from configure.in.Michael Adam2008-02-211-22/+0
| | | | | | | | | | | | | | | | | | It has moved to libreplace. Michael
| | * Remove mmap check from configure.inMichael Adam2008-02-212-75/+0
| | | | | | | | | | | | | | | | | | It is available in libreplace. Michael
| | * Fix the build on irix: Prevent empty line in TDB_OBJMichael Adam2008-02-211-2/+2
| | | | | | | | | | | | | | | | | | | | | This leads to a Makfile syntax error in the prerequisites for bin/smbd. Wow, irix is really picky! Michael
| | * From: David Disseldorp <ddiss@sgi.com>Jeremy Allison2008-02-201-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | The vfs_prealloc module makes use of the now redundant fd parameter for SMB_VFS_FTRUNCATE(), instead get the fd from the files_struct. Patch for Samba 3.2 Test branch below. Cheers, David D
| | * Fix double free bugs after calling regfio_close()Tim Potter2008-02-201-4/+0
| | |
| | * Fix memory leaks on error pathTim Potter2008-02-201-1/+8
| | |
| | * Fix possible close of invalid fd if call to socket() returns -1.Tim Potter2008-02-201-1/+2
| | |
| | * Fix build with static libs: place tdb static lib after tdb-util objects.Michael Adam2008-02-201-2/+3
| | | | | | | | | | | | Michael
| | * configure: add --enable-shared-libs to control overall internal use of ↵Michael Adam2008-02-201-3/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | shared libs. To disable internal use of shared libraries altogether (as opposed to disabling use of single shared libs by --with-static-libs=LIBS), use this new configure parameter --disable-shared-libs. Michael
| | * configure: Move assemblage of samba version strings to m4 include file.Michael Adam2008-02-202-19/+30
| | | | | | | | | | | | Michael
| | * Remove checks for ino_t, loff_t, offset_t, and comparison_fn_t from ↵Michael Adam2008-02-201-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | configure.in. These tests are in libreplace. Michael
| | * Support dlopen(NULL, ...) on HPUX.Jelmer Vernooij2008-02-201-0/+2
| | | | | | | | | | | | (cherry picked from commit 53c70b5f77a3b9abaab783590e66278129173d5f)
| | * Remove tests for vsnprintf snprintf asprintf vasprintf and va_copy from ↵Michael Adam2008-02-201-53/+1
| | | | | | | | | | | | | | | | | | | | | | | | configure. These are tested in libreplace. Michael
| | * libreplace: change samba_cv_ to libreplace_cv_ in libreplace.m4.Michael Adam2008-02-201-36/+36
| | | | | | | | | | | | | | | Michael (cherry picked from commit 83387ecccfe95b80525bf53c5fc9e945ffee10ec)
| | * libreplace: change samba_cv_ to libreplace_cv_ in system/config.m4.Michael Adam2008-02-201-8/+8
| | | | | | | | | | | | | | | Michael (cherry picked from commit 00c173bfba9c659750bf231fbd9278dd38aa8bfc)
| | * libreplace: change samba_cv_ to libreplace_cv_ in getpass.m4.Michael Adam2008-02-201-6/+6
| | | | | | | | | | | | | | | Michael (cherry picked from commit d3b3d3ec9ff64108b4cd5b7c912ab4ea207256cb)
| | * libreplace: change samba_cv_ to libreplace_cv_ in getifaddrs.m4Michael Adam2008-02-201-15/+15
| | | | | | | | | | | | | | | Michael (cherry picked from commit acab9def2a1e3460bef8baae6efc66d9dfad6eac)
| | * Remove the getifaddrs checks from configure.in: they are now in lib/replace.Michael Adam2008-02-201-96/+0
| | | | | | | | | | | | Michael
| | * configure: Use SAMBA_CONFIGURE_CPPFLAGS for AC_LIBREPLACE_BROKEN_CHECKS.Michael Adam2008-02-201-0/+5
| | | | | | | | | | | | | | | | | | To fix the build (make test) after merging libreplace changes. Michael
| | * libreplace: Remove double item in case statement.Michael Adam2008-02-191-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | This was by accident introduced in cherry-pick commit 7a7dcd9b1265b8f031c9a5e9c4cfa89216827a28: This tiny portion had already been ported in 64ff1dad8664f14030c7d78c252d946216798a88. MIchael
| | * Remove relict SAMBA_CONFIGURE_CPPFLAGS from lib/replace.Michael Adam2008-02-191-3/+0
| | | | | | | | | | | | | | | Michael (cherry picked from commit d10cbb533c18a6d74160477d34a81bbd4cd6c7c8)
| | * r26554: Fix test for getifaddr on FreeBSD. Patch by Timur Bakeyev.Jelmer Vernooij2008-02-191-1/+1
| | | | | | | | | | | | (cherry picked from commit 37c7b65546190bdce40cb48435cc4fd51d89a124)
| | * r26551: Make sure NULL is defined before using it to test for getifaddrs().James Peach2008-02-191-0/+4
| | | | | | | | | | | | | | | Patch from Timur I. Bakeyev <timur@com.bat.ru>. (cherry picked from commit 188156228b53c4bbc9c18c6ff1a0d3c6d0ba5fcb)
| | * r26507: Fix function signature for freeifaddrs.Jelmer Vernooij2008-02-191-1/+1
| | | | | | | | | | | | (cherry picked from commit cc873bdd2e86e5b380c3056810ccc5ad98372f7c)
| | * r26497: Fix return type for freeifaddrs().Jelmer Vernooij2008-02-192-7/+7
| | | | | | | | | | | | (cherry picked from commit 8c65053f51330bb55a81572264eefbcc56029dc1)
| | * r26495: Add defines for getifaddrs/freeifaddrs.Jelmer Vernooij2008-02-191-0/+10
| | | | | | | | | | | | (cherry picked from commit c9e5a3078f7baa83743658d5648f0eefdeb05d2f)
| | * r26492: Some hosts have a define called ifa_dstaddr.Jelmer Vernooij2008-02-191-0/+1
| | | | | | | | | | | | (cherry picked from commit c4cd935ee783b2f4939e2c481bbdb1bbdb9190cd)
| | * r26491: Fix syntax.Jelmer Vernooij2008-02-191-1/+1
| | | | | | | | | | | | (cherry picked from commit 2513230e286179747bb84e4e87121b80bea8f3f0)