Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-03-17 | s4-spoolss: fix spoolss_GetPrinterData w.r.t. out pointer changes. | Günther Deschner | 2 | -15/+21 | |
Guenther | |||||
2009-03-17 | s4-smbtorture: fix test_GetPrinterData tests after out pointer changes. | Günther Deschner | 2 | -1/+5 | |
Guenther | |||||
2009-03-17 | s4:build: use SAMBA_PKG_CONFIG_MIN_VERSION instead of PKG_CONFIG_MIN_VERSION | Stefan Metzmacher | 1 | -2/+3 | |
And also intialize the variable. This fixes ./autogen.sh in the merged build for me. metze | |||||
2009-03-17 | added support for parentGUID | Andrew Tridgell | 3 | -5/+129 | |
This is made up of 4 parts: 1) change our schema to include the parentGUID attribute type 2) in the add hook in the objectclass module, get the objectGUID of the parent and add it to the message as parentGUID 3) in the rename hook in the objectclass module, get the objectGUID of the new parent, and insert an async modify request after the renmam is done 4) added a simple test suite | |||||
2009-03-16 | s4:password_hash Only store the LM hash if 'lanman auth = yes' | Andrew Bartlett | 1 | -1/+2 | |
The clients that do only lanman auth are on their way out, the passwords are case insensitive, it does not support unicode and we should not store such a poor hash of the password if we can avoid it. Andrew Bartlett | |||||
2009-03-15 | Fix installation of tdr.h. | Jelmer Vernooij | 1 | -1/+1 | |
2009-03-15 | configure: Add common file with minimum versions of external libraries. | Jelmer Vernooij | 2 | -4/+12 | |
2009-03-15 | Merge branch 'nodiscard' of /home/jelmer/samba4 | Jelmer Vernooij | 1 | -4/+0 | |
2009-03-15 | Merge branch 'tdr' of /home/jelmer/samba4 | Jelmer Vernooij | 10 | -664/+7 | |
2009-03-15 | Merge branch 'checktalloc' of /home/jelmer/samba4 | Jelmer Vernooij | 1 | -1/+1 | |
2009-03-15 | Remove unused CONST_DISCARD macro. | Jelmer Vernooij | 2 | -5/+1 | |
2009-03-15 | Remove -L/usr/lib from a couple more make variables. | Jelmer Vernooij | 3 | -2/+5 | |
2009-03-14 | s4-smbtorture: fix build warning in test_EnumPrintProcDataTypes. | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2009-03-14 | Merge branch 'checktalloc' into tdr | Jelmer Vernooij | 1 | -1/+1 | |
2009-03-14 | Depend on a newer talloc in Samba 4. | Jelmer Vernooij | 1 | -1/+1 | |
2009-03-14 | Move tdr to top-level. | Jelmer Vernooij | 8 | -663/+3 | |
2009-03-13 | s4:build: require tevent 0.9.4 | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2009-03-12 | s4:build: try to fix the build with the ibm checker in the build-farm | Stefan Metzmacher | 1 | -1/+1 | |
The problem is that the shell eats the quotes in -DFOO="foo, bar, NULL" metze | |||||
2009-03-12 | s4:events: allow nested events until we fixed all code to avoid them | Stefan Metzmacher | 1 | -0/+2 | |
metze | |||||
2009-03-12 | s4:ldb: allow nested events until the code is fixed to avoid them | Stefan Metzmacher | 1 | -1/+3 | |
metze | |||||
2009-03-12 | s4:ldb: setup tevent debug functions on a selfcreated event context | Stefan Metzmacher | 1 | -0/+35 | |
metze | |||||
2009-03-12 | use a base64 encoded password when changing passwords | Andrew Tridgell | 1 | -2/+3 | |
This avoids problems with embedded control characters in password changes | |||||
2009-03-12 | fixed more embedded spaces in LDIF | Andrew Tridgell | 1 | -3/+3 | |
This one added 3 spaces to the end of any new passwords | |||||
2009-03-12 | removed leading spaces from embedded ldif | Andrew Tridgell | 1 | -10/+10 | |
This fixes the problem with the setpassword command failing like this: Error: First line of ldif must be a dn not ' dn' | |||||
2009-03-11 | LDAP-BENCH-CLDAP: also test CLDAP rootdse searches. | Stefan Metzmacher | 1 | -6/+79 | |
metze | |||||
2009-03-10 | Fix extended operation return path. | Simo Sorce | 1 | -8/+12 | |
Extended operations return was not going thorugh the same patch as others leaving the ctx around. Plus we were neutralizing the spy too early so that it didn't set the request_terminated flag as it should have. This should hopefully fix the failures in the build farm. | |||||
2009-03-10 | added a test that triggers a bug in the Samba3 notify code | Andrew Tridgell | 1 | -0/+169 | |
The Samba3 internal notify code doesn't work correctly when there is more than one tree connect to the same smbd process. This change to the RAW-NOTIFY test triggers the bug. | |||||
2009-03-09 | Fix potential segfaults using freed memory. | Simo Sorce | 4 | -10/+54 | |
In some code paths ltdb_context was still referenced even after we were returned an error by one of the callbacks. Because the interface assumes that once an error is returned the ldb_request may be freed, and because the ltdb_context was allocated as a child of the request, this might cause access to freed memory. Allocate the ltdb_context on ldb, and keep track of what's going on with the request by adding a spy children on it. This way even if the request is freed before the ltdb_callback is called, we will safely free the ctx and just quietly return. | |||||
2009-03-07 | s4-spoolss: just return OK for dcesrv_spoolss_EnumPrintProcDataTypes for now. | Günther Deschner | 2 | -2/+1 | |
Guenther | |||||
2009-03-07 | don't rely on shebang's perl path, call our $PERL instead | Björn Jacke | 1 | -1/+1 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2009-03-07 | s4-smbtorture: add test_EnumPrintProcDataTypes to RPC-SPOOLSS test. | Günther Deschner | 2 | -0/+53 | |
Guenther | |||||
2009-03-06 | s4-spoolss: fix spoolss server enum calls after pointer changes. | Günther Deschner | 2 | -14/+14 | |
Guenther | |||||
2009-03-06 | s4-smbtorture: exit early in test_EnumPorts when no port info has been returned. | Günther Deschner | 1 | -0/+2 | |
Guenther | |||||
2009-03-06 | s4-smbtorture: fix s3 flavor rpc spoolss test. | Günther Deschner | 1 | -0/+2 | |
Guenther | |||||
2009-03-06 | s4-smbtorture: fix RPC-SPOOLSS-WIN. | Günther Deschner | 1 | -1/+7 | |
Guenther | |||||
2009-03-06 | s4-smbtorture: fix RPC-SPOOLSS test after enum out info pointer changes. | Günther Deschner | 1 | -18/+30 | |
Guenther | |||||
2009-03-06 | s4:errormap: map ECANCELED to NT_STATUS_CANCELLED | Stefan Metzmacher | 1 | -0/+4 | |
metze | |||||
2009-03-05 | Remove parse_control from header, long after the function was removed | Andrew Bartlett | 1 | -1/+0 | |
Simo reminded me that when (long ago) I moved parse_controls away from this place, I forgot to update the manually maintained header file. Andrew Bartlett | |||||
2009-03-05 | Update talloc version so we don't fail on system talloc 1.2.0 | Andrew Bartlett | 1 | -1/+1 | |
The problem is that talloc in the Samba tree now includes talloc_get_type_abort(), which is not present on Fedora 10 or ubuntu's talloc 1.2.0. Andrew Bartlett | |||||
2009-03-04 | Pull in all the schema information during DRS schema fetch | Andrew Bartlett | 1 | -9/+38 | |
This includes things such as allowed attributes, which were not populated into the schema structure before. Andrew Bartlett | |||||
2009-03-04 | Don't print the admin password if we don't set one. | Andrew Bartlett | 1 | -1/+2 | |
For example, if we don't create the admin user (perhaps expecting users to be in LDAP already, or we are due an incoming replication) we should not confuse the administrator by printing a unused password. Andrew Bartlett | |||||
2009-03-04 | Allow 'net vampire' to work without an existing smb.conf | Andrew Bartlett | 2 | -3/+7 | |
Now the provision can generate one based on the detected settings from the target domain. Andrew Bartlett | |||||
2009-03-02 | make man page (un)install more portable | Björn Jacke | 2 | -2/+2 | |
2009-03-02 | some shells are picky about ^ without quotes | Björn Jacke | 1 | -2/+2 | |
2009-03-02 | Fix test_surrounding in samba4.rpcecho.python. | Jelmer Vernooij | 1 | -1/+1 | |
2009-03-01 | Merge branch 'master' of git://git.samba.org/samba into convenience | Jelmer Vernooij | 2 | -2/+5 | |
2009-03-01 | Use common header file for character set handling in Samba 3 and Samba 4. | Jelmer Vernooij | 6 | -39/+44 | |
2009-03-01 | Add header files for secace and secacl. | Jelmer Vernooij | 1 | -1/+2 | |
2009-03-01 | s4: Use same function signature for convert_* as s3. | Jelmer Vernooij | 21 | -148/+124 | |
2009-03-01 | Move secacl to top-level. | Jelmer Vernooij | 1 | -1/+2 | |