summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit 'release-4-0-0alpha5' into v4-0-stableold-v4-0-stableStefan Metzmacher2008-07-022-4/+15
|\
| * Merge branch '4-0-local' into v4-0-stablesamba-4.0.0alpha5Andrew Bartlett2008-06-3013-204/+225
| |\
| | * More updates for spec file, for alpha5Andrew Bartlett2008-06-301-3/+14
| | |
| | * Ensure we install smbd as well...Andrew Bartlett2008-06-301-1/+1
| | |
| * | Mark as alpha5 releaseAndrew Bartlett2008-06-301-1/+1
| | |
* | | Mark as 'not a git snapshot'.Andrew Bartlett2008-06-301-1/+1
| |/ |/|
* | Prepare for alpha5 tarball.Andrew Bartlett2008-06-301-4/+2
| | | | | | | | | | | | | | Now we have packaging/Fedora in the tree, make that directory or copy files into there. Andrew Bartlett
* | Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into 4-0-localAndrew Bartlett2008-06-3011-196/+208
|\ \ | |/ |/|
| * nbt_server/wins: don't force wins_ldb as shared_moduleStefan Metzmacher2008-06-301-1/+0
| | | | | | | | metze
| * dsdb: don't force the build of ldb modules as shared_moduleStefan Metzmacher2008-06-301-23/+0
| | | | | | | | metze
| * ldb_ildap: don't force the build as shared_moduleStefan Metzmacher2008-06-301-1/+0
| | | | | | | | metze
| * auth: don't force the build of auth_server as shared_moduleStefan Metzmacher2008-06-301-1/+0
| | | | | | | | metze
| * lib/talloc: build as MERGED_OBJ instead of STATIC_LIBRARYStefan Metzmacher2008-06-301-1/+1
| | | | | | | | metze
| * lib/events: build as MERGED_OBJ instead of STATIC_LIBRARYStefan Metzmacher2008-06-301-1/+1
| | | | | | | | metze
| * smb_build: use MERGED_OBJ instead of STATIC_LIBRARYStefan Metzmacher2008-06-301-2/+2
| | | | | | | | metze
| * smb_build: enable implicit make rulesStefan Metzmacher2008-06-301-0/+1
| | | | | | | | metze
| * ldb: allow ldb modules to specify LDB_MODULE(name) or LDB_BACKEND(name)Stefan Metzmacher2008-06-304-164/+201
| | | | | | | | metze
| * ldb: fix the init function names for some modulesStefan Metzmacher2008-06-301-2/+2
| | | | | | | | metze
* | Fix small formatting details in WHATSNET for an alpha5 release.Andrew Bartlett2008-06-301-2/+2
|/ | | | Andrew Bartlett
* Update Fedora packaging per feedback on review ticket.Andrew Bartlett2008-06-301-3/+4
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=453083
* Rework samdb handling for 'netlogon' packets.Andrew Bartlett2008-06-303-12/+4
| | | | | | | | | Don't reopen the samdb for every netlogon packet, and use the system_session(), as we must access data not available to anonymous. Perhaps we should consider a 'authenticated but not system' token, if we want more control on this. Andrew Bartlett
* Relax the ldap.py tests so that they pass against OpenLDAP CVS.Andrew Bartlett2008-06-301-3/+6
| | | | | | | This requires a patched OpenLDAP checked out from their CVS HEAD. I hope to see the patches incorporated soon. Andrew Bartlett
* Loosen ldap.py tests on the LDAP backend.Andrew Bartlett2008-06-301-1/+1
| | | | | | | Allow LDAP backend to return parts of the DN in a different case, when verifying memberOf. Andrew Bartlett
* Non-zero exit code on failure.Jelmer Vernooij2008-06-281-3/+6
|
* Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into 4-0-localAndrew Bartlett2008-06-285-11/+44
|\
| * pvfs: create a pvfs_acl subsystemStefan Metzmacher2008-06-285-9/+43
| | | | | | | | | | | | | | That means that the pvfs_acl implementations no longer register as ntvfs modules (which was wrong) metze
| * pvfs: pvfs_aio should be a subsystem instead of an extra ntvfs moduleStefan Metzmacher2008-06-281-2/+1
| | | | | | | | metze
* | selftest changes for 'winbind privileged dir' change.Andrew Bartlett2008-06-281-1/+3
| |
* | dynconfig changes for 'winbind privileged dir' changes.Andrew Bartlett2008-06-283-1/+7
| |
* | Use a configure-specified directory for the winbind priv pipeAndrew Bartlett2008-06-285-17/+65
| | | | | | | | | | | | | | This makes it easier for RPMs to specify an group for access to that directory. Andrew Bartlett
* | More work to use %{name} rather than 'samba'Andrew Bartlett2008-06-282-3/+7
| |
* | Update WHATSNEW towards an alpha5 release.Andrew Bartlett2008-06-281-33/+17
|/ | | | Andrew Bartlett
* Place the Fedroa package into Samba4's GIT treeAndrew Bartlett2008-06-284-0/+469
| | | | | | I'll keep this here at least until Fedora picks things up. Andrew Bartlett
* Tone down the language in BUGS.txtAndrew Bartlett2008-06-281-2/+20
|
* Fix the wbinfo test on the LDAP backend.Andrew Bartlett2008-06-282-34/+0
| | | | | | | | | | | | | The problem was that we would do a blocking wait for the LDAP server, which was also blocking on us returning (because we were in single process mode). The LDAP connection being made here is useless anyway, and will need to be an async ldb_connect() before anybody reintroucues it (nobody in their right mind would program a winbindd backend on pure LDAP, when the ldb abstraction is available). Andrew Bartlett
* ntlm_auth: eliminate "cast pointer from integer of different size" warnings ↵Michael Adam2008-06-271-2/+2
| | | | | | on 64bit. Michael
* ntlmssp: get rid of "cast to pointer from integer of different size" warning ↵Michael Adam2008-06-271-3/+3
| | | | | | | | | on 64 bit Not sure if this check is actually necessary, though: the second should be sufficient. Michael
* tdb_unpack: Eliminate "cast to pointer from integer of different size" ↵Michael Adam2008-06-271-1/+7
| | | | | | | | | | | warning on 64bit. The 'p' type is just a flag to mark the presence of a pointer, not a real pointer itself. The code is now the same as in Samba3's tdb_unpack. Michael
* gsskrb5: just don't force, but allow the flags when GSS_CF_NO_CI_FLAGS is givenStefan Metzmacher2008-06-271-0/+6
| | | | metze
* gsskrb5: fix gss_krb5_cred_no_ci_flags_x_oid_desc variable nameStefan Metzmacher2008-06-271-2/+2
| | | | metze
* credentials: gss_set_cred_option() doesn't like GSS_C_NO_BUFFERStefan Metzmacher2008-06-271-1/+4
| | | | metze
* Fix if_version for interfaces with a if_version_minor field different from 0Julien Kerihuel2008-06-271-1/+6
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* Fix a non-empty line with just spacesVolker Lendecke2008-06-271-1/+1
|
* Fix the definition of abspath for gnu make < 3.81Volker Lendecke2008-06-271-1/+1
|
* Remove events from require line:Julien Kerihuel2008-06-271-1/+1
| | | | | | | | | | | The events library is not installed and prevent OpenChange from linking with ldb. The following patch removes events reference from ldb pc file. We are currently fixing this bug in openchange upstream using 'sed' in our installsamba4.sh script, but this hack won't work with a packaged version of samba4. Signed-off-by: Stefan Metzmacher <metze@samba.org>
* pynbt: eliminate "initialization from incompatible pointer type" warningMichael Adam2008-06-271-1/+1
| | | | | | | | by fixing the signature of py_nbt_node_init(). Jelmer - please check! Michael
* nbt_server/wins: add forward declaration for struct event_contextStefan Metzmacher2008-06-271-1/+1
| | | | metze
* lib/ldb: add forward declaration for struct event_contextStefan Metzmacher2008-06-271-0/+1
| | | | metze
* credentials: gss_set_cred_option() needs gss_cred_id_t * argument, not ↵Michael Adam2008-06-271-1/+1
| | | | | | | | | gss_cred_id_t. This call was added in f573c1ff4443f3002c310d3ba29d8c343ad03907. Metze, please check! Michael
* mkversion.sh: printf %s is more portable than echo -eStefan Metzmacher2008-06-271-4/+4
| | | | metze