Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-03-08 | s3-idmap: fix the build of idmap_tdb2. | Günther Deschner | 1 | -11/+1 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Mar 8 10:51:04 CET 2011 on sn-devel-104 | |||||
2011-03-07 | s3: state->ev is not needed in winbindd_lookupsid | Volker Lendecke | 1 | -2/+0 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon Mar 7 20:52:53 CET 2011 on sn-devel-104 | |||||
2011-03-07 | Fix the examples/VFS build. | Jeremy Allison | 2 | -7/+7 | |
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Mon Mar 7 15:11:25 CET 2011 on sn-devel-104 | |||||
2011-03-07 | s3-docs: manpage for "net idmap delete" | Gregor Beck | 1 | -0/+17 | |
Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Mon Mar 7 14:26:42 CET 2011 on sn-devel-104 | |||||
2011-03-07 | s3-docs: manpage for "smbcontrol xx idmap" | Gregor Beck | 1 | -0/+26 | |
2011-03-07 | Fix examples/VFS to use correct prototypes for is_offline() and set_offline(). | Jeremy Allison | 2 | -6/+6 | |
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Mon Mar 7 13:39:17 CET 2011 on sn-devel-104 | |||||
2011-03-06 | s3: Remove close_fn from idmap_methods | Volker Lendecke | 11 | -98/+0 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sun Mar 6 13:37:13 CET 2011 on sn-devel-104 | |||||
2011-03-06 | s3-idmap-hash: Make "hashed_domains" properly talloced | Volker Lendecke | 1 | -7/+7 | |
2011-03-06 | s3: Replace idmap_ad_close by a destructor | Volker Lendecke | 1 | -11/+12 | |
2011-03-06 | s3-idmap-ad: Make ad_schema properly talloced | Volker Lendecke | 1 | -4/+2 | |
2011-03-06 | s3-idmap-tdb: private_data is a talloc child of dom | Volker Lendecke | 1 | -7/+0 | |
2011-03-06 | s3-idmap-ldap: private_data is a talloc child of dom | Volker Lendecke | 1 | -10/+0 | |
2011-03-06 | s3-idmap-rid: private_data is a talloc child of dom | Volker Lendecke | 1 | -1/+0 | |
2011-03-06 | s3: Remove an unnecessary if-statement | Volker Lendecke | 1 | -3/+1 | |
2011-03-06 | s3: Remove an obsolete comment | Volker Lendecke | 1 | -5/+0 | |
2011-03-06 | s3: Remove some unused code | Volker Lendecke | 1 | -21/+0 | |
2011-03-06 | s3: Remove unused args from nss_get_info_cached | Volker Lendecke | 3 | -7/+4 | |
2011-03-06 | s3: Remove unused args from nss_get_info | Volker Lendecke | 3 | -3/+1 | |
2011-03-06 | s3: Remove unused args from get_nss_info | Volker Lendecke | 6 | -10/+1 | |
2011-03-06 | s3: Move EXOP definitions to smbldap.h | Volker Lendecke | 2 | -25/+25 | |
This attempts to fix the build on Solaris Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sun Mar 6 10:45:16 CET 2011 on sn-devel-104 | |||||
2011-03-05 | s3: Fix uninitialized variables | Volker Lendecke | 1 | -1/+2 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sat Mar 5 17:25:43 CET 2011 on sn-devel-104 | |||||
2011-03-05 | Fix some nonempty blank lines | Volker Lendecke | 1 | -3/+3 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sat Mar 5 15:16:02 CET 2011 on sn-devel-104 | |||||
2011-03-05 | wbinfo: Use wbcSidToStringBuf | Volker Lendecke | 1 | -60/+14 | |
2011-03-05 | wbinfo: Fix a debug message | Volker Lendecke | 1 | -1/+1 | |
2011-03-05 | s3-net: Use wbcSidToStringBuf | Volker Lendecke | 1 | -17/+3 | |
2011-03-05 | pam_winbind: Use wbcSidToStringBuf | Volker Lendecke | 1 | -12/+3 | |
2011-03-05 | libwbclient: Use wbcSidToStringBuf | Volker Lendecke | 3 | -55/+11 | |
2011-03-05 | libwbclient: Add wbcSidToStringBuf | Volker Lendecke | 2 | -16/+50 | |
2011-03-05 | nsswitch: wbcFreeMemory deals fine with NULL | Volker Lendecke | 3 | -24/+8 | |
2011-03-05 | s3: Fix a memory leak in check_sam_security_info3 | Volker Lendecke | 1 | -10/+12 | |
Abartlet, this commit makes check_sam_security_info3 use talloc_tos() and also cleans up the temporary talloc stackframe. The old code created a temporary talloc context off "mem_ctx" but failed to clean up the tmp_ctx in all but one return paths. talloc_stackframe()/talloc_tos() is designed as a defense against exactly this error: Even if we failed to free the frame when returning from the routine, it would be cleaned up very soon, in our main event loop. Please check this patch! Thanks, Volker Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sat Mar 5 14:08:37 CET 2011 on sn-devel-104 | |||||
2011-03-05 | s3:test: the registry roundtrip test passes now | Michael Adam | 1 | -1/+0 | |
Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Sat Mar 5 02:19:33 CET 2011 on sn-devel-104 | |||||
2011-03-05 | s3:test: mark vanished parameter "postscript" invalid in net registry ↵ | Michael Adam | 1 | -0/+1 | |
roundtrip test | |||||
2011-03-05 | s3:test: in net registry roundtrip test, mark "lock dir" as invalid parameter | Michael Adam | 1 | -0/+1 | |
This is a synonym of lock directory which is already marked invalid. | |||||
2011-03-05 | s3:test: in net registry roundtrip test, exclude the files from exclude/logon | Michael Adam | 1 | -1/+1 | |
These files are not samba config files... | |||||
2011-03-05 | s3:registry: fix invalid write in iconvert_talloc() | Michael Adam | 1 | -2/+5 | |
For a non-preallocated dest-string and sourcestring of len < 2, (one or both of the) final two two zero-bytes would be written after the end of the allocated dest-string. The sourcelen did not include the source string terminator. For longer strings, this was not a problem because the dest-string would have been reallocated in the convert-loop. This is fixed now by allocating two extra bytes for the terminating 0-bytes that are needed anyways in the initial allocation. Pair-Programmed-With: Gregor Beck <gbeck@sernet.de> | |||||
2011-03-05 | s3:test: correctly react to each failing step in the net registry roundtrip ↵ | Michael Adam | 1 | -0/+29 | |
tests | |||||
2011-03-05 | s3:test: improve logging in the net registry roundtrip test steps | Michael Adam | 1 | -1/+7 | |
2011-03-04 | s4:operational LDB module - fix attribute names to be right up/down-cased | Matthias Dieter Wallnöfer | 2 | -10/+10 | |
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Mar 4 23:56:07 CET 2011 on sn-devel-104 | |||||
2011-03-04 | s4:ldap.py - rootdse tests should search for the rootDSE not the default DN | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
Reviewed by: Tridge | |||||
2011-03-04 | s4:ldap.py - add a test in order to show the operational module fixed | Matthias Dieter Wallnöfer | 1 | -0/+14 | |
Reviewed by: Tridge | |||||
2011-03-04 | s4:operational LDB module - fix display of some constructed attributes | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
"structuralObjectClass", "createTimestamp" and "modifyTimestamp" weren't displayed anymore. Reviewed by: Tridge | |||||
2011-03-04 | s4:operational LDB module - add "groupToken" as unsigned int (uint32_t) | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
Reviewed by: Tridge | |||||
2011-03-04 | s4:operational LDB module - readd "structuralObjectClass" -> "objectClass" ↵ | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
mapping This has been removed accidentally by commit a093e10896a4768dba0cd793a04b7d5d1366fee2. Reviewed by: Tridge | |||||
2011-03-04 | ldb:ldb_msg.c - use LDB result constants for checking return values | Matthias Dieter Wallnöfer | 1 | -2/+5 | |
Reviewed by: Tridge Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Mar 4 22:51:57 CET 2011 on sn-devel-104 | |||||
2011-03-04 | s4:ldap.py - other important RDN check testcases | Matthias Dieter Wallnöfer | 1 | -0/+67 | |
Reviewed by: Tridge | |||||
2011-03-04 | s4:ldap.py - remove a debug output | Matthias Dieter Wallnöfer | 1 | -1/+0 | |
This has only been needed for developing this testcase and has been forgotten to be removed afterwards. Reviewed by: Tridge | |||||
2011-03-04 | ldb:rdn_name LDB module - more RDN constraint checks (from AD) | Matthias Dieter Wallnöfer | 1 | -1/+40 | |
Reviewed by: Tridge | |||||
2011-03-04 | s4/ldb - remove now superflous "ldb_dn_validate" checks | Matthias Dieter Wallnöfer | 9 | -18/+14 | |
If we immediately afterwards perform an LDB base operation then we don't need an explicit "ldb_dn_validate" check anymore (only OOM makes sense). Reviewed by: Tridge | |||||
2011-03-04 | s4:dsdb - we don't need to check if a DN != NULL if we call "ldb_dn_validate" | Matthias Dieter Wallnöfer | 3 | -7/+4 | |
"ldb_dn_validate" is NULL-safe and does the check implicitly. Reviewed by: Tridge | |||||
2011-03-04 | Revert "s4:objectclass LDB module - if we cannot find DN's parent then the ↵ | Matthias Dieter Wallnöfer | 1 | -3/+1 | |
DN itself is invalid" This is not needed anymore with the new DN checking. This reverts commit 5896b7299331aedd065397d2078c62d85bcf68f6. Reviewed by: Tridge |