summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* build: moved spnego_parse.c into a common subsystemAndrew Tridgell2011-02-241-4/+0
|
* Remember to free the second temporary string.Jeremy Allison2011-02-241-0/+1
| | | | | Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Feb 24 04:17:49 CET 2011 on sn-devel-104
* Fix bug 7950 - Samba 3.5.x fails BASE-CREATEX_SHAREMODES_DIR smbtorture4 testJeremy Allison2011-02-233-8/+21
| | | | | | We need to revalidate the pathname once re-constructed from a root fsp. Jeremy.
* build: moved librpc/rpc/*.c into a rpccommon libraryAndrew Tridgell2011-02-241-10/+4
| | | | | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Thu Feb 24 02:42:37 CET 2011 on sn-devel-104
* build: moved lmhosts.c into a common subsystemAndrew Tridgell2011-02-241-3/+4
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* build: moved libds/common/flag_mapping.c into a common subsystemAndrew Tridgell2011-02-241-2/+3
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* build: moved schannel_sign.c into a shared COMMON_SCHANNEL subsystemAndrew Tridgell2011-02-241-4/+1
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* build: moved libcli/auth/ntlmssp*.c into a common libcliauth.so libraryAndrew Tridgell2011-02-241-7/+3
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s3-waf: start adding checks for quota support.Günther Deschner2011-02-231-0/+8
| | | | Guenther
* s3-waf: remove more unused variables.Günther Deschner2011-02-231-10/+2
| | | | Guenther
* s3-waf: rename LIBSAMBA subsystem to LIBNTLMSSP (which it is in fact).Günther Deschner2011-02-232-12/+10
| | | | Guenther
* s3-waf: move GROUPDB into libpassdb.so.Günther Deschner2011-02-232-12/+12
| | | | Guenther
* s3:libsmb only log a dead connection if it was not closedChristian Ambach2011-02-231-7/+12
| | | | | | | | | in case the cli was closed before (e.g. via a dropped ip message) it can be expected that the read here returns with an error and so we should not log that a connection is dead when it was closed before Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Feb 23 16:51:03 CET 2011 on sn-devel-104
* s3: Fix 64-bit errorsVolker Lendecke2011-02-231-4/+8
| | | | | | | | | Casting those variables will lead to sscanf believing that it sees pointers to unsigned longs. These might be 64 bit long, thus sscanf will overwrite memory it should not overwrite. Assigning the vars later is okay, there we get automatic type conversion. C can be nasty ... Christian, please check!
* s3: Fix an uninitialized variable useVolker Lendecke2011-02-231-1/+2
| | | | | | The "goto error;" lead to the invalid talloc_free. Christian, please check!
* s3:idmap:autorid prevent fatal configuration changesChristian Ambach2011-02-231-2/+112
| | | | | | | | | | | | as the autorid module relies on a stable minimum uid/gid value and rangesize, it now saves the values used at first successful start and refuses to work if these values get changed in smb.conf later. Changing the values after the first mapping was done will result in unpredictable behaviour. Another check covers the maximum uid value. If this gets decreased later and domain range mappings already exist that would result in uid values higher than the new uid value, initialization will be aborted
* s3-proto: remove some prototypes of non-existing functions.Günther Deschner2011-02-236-51/+0
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Feb 23 15:42:35 CET 2011 on sn-devel-104
* s3: Improve an error msg in vfs_gpfsVolker Lendecke2011-02-231-1/+2
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Feb 23 14:12:39 CET 2011 on sn-devel-104
* s3-waf: make use of LIBCLI_CLDAP subsystemStefan Metzmacher2011-02-231-6/+4
| | | | | | | metze Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Feb 23 10:17:01 CET 2011 on sn-devel-104
* Torture test added to run_opentest() to ensure we don't regress onJeremy Allison2011-02-231-0/+26
| | | | | | | the previous change. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Feb 23 03:00:53 CET 2011 on sn-devel-104
* Fix bug found against the new Mac client @ Connectathon. Mac clientsJeremy Allison2011-02-231-1/+9
| | | | | | | | don't open with FILE_WRITE_ATTRIBUTES when just doing a write, so updating the write time on close fails as smb_set_file_time() now (correctly) checks for FILE_WRITE_ATTRIBUTES in the access_mask before allowing client time update. This is an internal time update being done on a close, not a handle-based client request.
* s3-waf: move some parts of auth to AUTH_COMMON to avoid duplicate symbols ↵Günther Deschner2011-02-232-16/+15
| | | | | | | | | with winbindd. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Feb 23 02:16:23 CET 2011 on sn-devel-104
* s3-waf: added SYMBOLCHECK support to source3 waf buildAndrew Tridgell2011-02-231-0/+2
|
* build: moved more files into samba-util-commonAndrew Tridgell2011-02-231-18/+2
| | | | | this removes UTIL_SRC from the s3 waf build, as it is now all in common with samba-util-common
* build: created samba-util-common libraryAndrew Tridgell2011-02-231-9/+1
| | | | | | | | | | | this library will contain files that can be built in common between s3 and s4. Both samba-util and samba-util3 depend on it. Currently this library needs to be marked as allow_undefined_symbols, in order to allow s4 to build it. We can remove that flag once we have all the needed symbols in common Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* Revert "s3-waf: make use of LIBCLI_CLDAP subsystem"Günther Deschner2011-02-221-3/+6
| | | | | | | | | | | Metze, we need to cleanup deps to idtree and cli-ldap first. Guenther This reverts commit ac4497edae2800c3fc7c40f0e538b936f1965a75. Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Feb 22 23:53:25 CET 2011 on sn-devel-104
* s3-waf: add check for getspnam().Günther Deschner2011-02-221-0/+5
| | | | Guenther
* s3-waf: add check for TDB_ERR_NESTING.Günther Deschner2011-02-221-0/+5
| | | | Guenther
* s3-waf: add check for sendfile on AIX.Günther Deschner2011-02-221-0/+23
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Feb 22 22:36:53 CET 2011 on sn-devel-104
* s3-waf: add check for sendfile on solaris.Günther Deschner2011-02-221-0/+50
| | | | Guenther
* s3-waf: add check for sendfile on hpux.Günther Deschner2011-02-221-0/+37
| | | | Guenther
* s3-waf: add check for sendfile on freebsd.Günther Deschner2011-02-221-0/+24
| | | | Guenther
* s3-waf: add check for sendfile on linux.Günther Deschner2011-02-221-0/+45
| | | | Guenther
* s3-waf: make sure ENABLE_BUILD_FARM_HACKS is enabled when run on the buildfarm.Günther Deschner2011-02-221-0/+3
| | | | Guenther
* s3-includes: move some chgpasswd related defines to the locations where they ↵Günther Deschner2011-02-223-12/+12
| | | | | | are used. Guenther
* s3-printing: move more printing structs to printing.hGünther Deschner2011-02-223-40/+41
| | | | Guenther
* s3-printing: only include printing where really needed.Günther Deschner2011-02-229-30/+33
| | | | Guenther
* s3-printing: fix pcacp prototypes and includes.Günther Deschner2011-02-226-8/+10
| | | | Guenther
* s3-printing: isolate print notification prototypes better.Günther Deschner2011-02-227-63/+92
| | | | Guenther
* s3-waf: make use of LIBCLI_CLDAP subsystemStefan Metzmacher2011-02-221-6/+3
| | | | metze
* s3: Fix filtering in pdb_ads_search_usersVolker Lendecke2011-02-221-6/+19
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue Feb 22 20:59:07 CET 2011 on sn-devel-104
* s3: Fix some nonempty blank linesVolker Lendecke2011-02-221-10/+10
|
* s3: Fix a typoVolker Lendecke2011-02-221-1/+1
|
* s3-waf: add replacetort binary.Günther Deschner2011-02-221-0/+5
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Feb 22 15:42:58 CET 2011 on sn-devel-104
* s3-waf: add check for ftruncate extend.Günther Deschner2011-02-221-0/+6
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Feb 22 13:35:48 CET 2011 on sn-devel-104
* s3-waf: add check for realpath() NULL arg.Günther Deschner2011-02-221-0/+21
| | | | Guenther
* s3-waf: add check for makedev().Günther Deschner2011-02-221-0/+11
| | | | Guenther
* s3-waf: add check for TIME_T_MAX.Günther Deschner2011-02-221-0/+25
| | | | Guenther
* s3-waf: add check for /proc/sys/kernel/core_pattern.Günther Deschner2011-02-221-0/+3
| | | | Guenther
* selftest the raw.mux test is flaky:Andrew Bartlett2011-02-221-0/+1
| | | | | | | | | | | | | | | TESTING MULTIPLEXED LOCK/LOCK/UNLOCK establishing a lock the second lock will conflict with the first this will too, but we'll unlock while waiting unlock the first range recv the async reply async lock took 265.40 msec failed to trigger early lock retry UNEXPECTED(error): samba3.posix_s3.raw.mux.mux Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue Feb 22 07:09:07 CET 2011 on sn-devel-104