Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-02-10 | ldb: change version number to 1.0.0 | Andrew Tridgell | 1 | -1/+1 | |
Simo pointed out that the module loading change should have been combined with a major version number. That seems like a good excuse for a 1.0 release Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2011-02-10 | ldb: fixed two warnings in the ldb_ldap backend | Andrew Tridgell | 1 | -2/+2 | |
2011-02-10 | ldb: added a include/ldb_version.h | Andrew Tridgell | 2 | -2/+10 | |
this fixes a problem with the installed ldb_modules.h header, which depended on LDB_VERSION being defined. Thanks to Simo for noticing this! Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2011-02-10 | Put OpenDir() back the way it was - don't overload with an fsp arg. Create ↵ | Jeremy Allison | 5 | -21/+64 | |
OpenDir_fsp for new usage. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Feb 10 02:43:31 CET 2011 on sn-devel-104 | |||||
2011-02-10 | Make it clear we're using the open file pathname. | Jeremy Allison | 1 | -6/+4 | |
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Feb 10 01:06:29 CET 2011 on sn-devel-104 | |||||
2011-02-09 | Allow SMB2_FIND to actually use the open fd handle if we support fdopendir. ↵ | Jeremy Allison | 7 | -17/+55 | |
Fallback to pathname opendir if not. | |||||
2011-02-09 | Correctly plumb in VFS_FDOPENDIR. | Jeremy Allison | 2 | -2/+3 | |
2011-02-09 | s3-waf: make ads support detection a little more robust. | Günther Deschner | 1 | -5/+44 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Feb 9 23:38:50 CET 2011 on sn-devel-104 | |||||
2011-02-09 | s3: move some stuff out of smb.h to better locations. | Günther Deschner | 4 | -6/+7 | |
Guenther | |||||
2011-02-09 | s3: remove unused struct uuid_flat. | Günther Deschner | 1 | -7/+0 | |
Guenther | |||||
2011-02-09 | s3-waf: make sure we dont activate dnsupdate support w/o gssapi. | Günther Deschner | 1 | -1/+4 | |
Guenther | |||||
2011-02-09 | Oops. Need to test for if(!NT_STATUS_IS_OK(..)) for error. | Jeremy Allison | 1 | -1/+1 | |
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Feb 9 22:06:05 CET 2011 on sn-devel-104 | |||||
2011-02-09 | Fix up some buildfarm warnings. | Jeremy Allison | 4 | -4/+4 | |
2011-02-09 | Don't use asprintf in this library - breaks the build on many systems. Fake ↵ | Jeremy Allison | 1 | -3/+8 | |
with malloc/memcpy. | |||||
2011-02-09 | Move to opening an fd on directory opens. Get more careful about symlink races. | Jeremy Allison | 1 | -1/+37 | |
2011-02-09 | Remove unneeded stat call. | Jeremy Allison | 1 | -9/+4 | |
2011-02-09 | s4:WAF build - remove "source4/configure.developer" | Matthias Dieter Wallnöfer | 1 | -6/+0 | |
This isn't needed anymore - discussed with abartlet. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Wed Feb 9 19:44:05 CET 2011 on sn-devel-104 | |||||
2011-02-09 | ldb:tools - return LDB_ERR_OPERATIONS_ERROR on generic errors | Matthias Dieter Wallnöfer | 8 | -19/+20 | |
Use "return" when located in "main" for consistency ("exit" would do the same). The patchset has been discussed with Jelmer Vernooij and afterwards LDB maintainer Simo Sorce. | |||||
2011-02-09 | ldb:tools - always check if ldb connection has been estabilished | Matthias Dieter Wallnöfer | 7 | -1/+19 | |
Otherwise return "LDB_ERR_OPERATIONS_ERROR". | |||||
2011-02-09 | ldb:ldbsearch tool - use LDB result constants where possible | Matthias Dieter Wallnöfer | 1 | -7/+7 | |
2011-02-09 | ldb:ldbsearch tool - simplify error code return | Matthias Dieter Wallnöfer | 1 | -3/+1 | |
2011-02-09 | ldb:ldbsearch tool - use "%u" for printing unsigned integers | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
2011-02-09 | ldb:ldbedit tool - don't forget about the "do_edit" result code | Matthias Dieter Wallnöfer | 1 | -11/+4 | |
Use it for computing the program exit code. The "result" has not to be free'd explicitly since it's a child by "ldb" which itself is child by "mem_ctx". | |||||
2011-02-09 | ldb:ldbedit tool - fix bug #7914 | Matthias Dieter Wallnöfer | 1 | -4/+7 | |
"modify_record" returns "-1" when failing, otherwise the number of modifies performed as an "unsigned int" converted to "int". When we get "-1" we immediately need to stop (the error message has already been generated by the function itself). | |||||
2011-02-09 | ldb:ldbedit tool - use unsigned counters for consistency with other LDB tools | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
2011-02-09 | ldb:ldbedit tool - use "%u" for printing out unsigned integers | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
2011-02-09 | ldb:ldbedit tool - use LDB result constants where needed | Matthias Dieter Wallnöfer | 1 | -5/+5 | |
2011-02-09 | ldb:ldbrename tool - use LDB result constant where needed | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
2011-02-09 | ldb:ldbmodify tool - use unsigned counters for consistency with other LDB tools | Matthias Dieter Wallnöfer | 1 | -5/+5 | |
2011-02-09 | ldb:ldbdel tool - use LDB result constants for consistency | Matthias Dieter Wallnöfer | 1 | -7/+7 | |
2011-02-09 | ldb:ldbadd tool - use LDB return codes where possible | Matthias Dieter Wallnöfer | 1 | -4/+6 | |
2011-02-09 | ldb:ldbadd tool - use "%u" for printing out unsigned integers | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
2011-02-09 | ldb:ldbadd tool - use LDB result constants for consistency | Matthias Dieter Wallnöfer | 1 | -4/+4 | |
2011-02-09 | s3-waf: we check for attr in ../lib/util/script already, so we cannot set to ↵ | Günther Deschner | 1 | -2/+0 | |
EMPTY here. Hopefully fixes the irix build. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Feb 9 18:58:15 CET 2011 on sn-devel-104 | |||||
2011-02-09 | s3-waf: as long as we dont have --with-featureX=yes|no|auto handling, avoid ↵ | Günther Deschner | 1 | -4/+0 | |
exiting. Guenther | |||||
2011-02-09 | s3-waf: check k5crypto in some more locations. | Günther Deschner | 1 | -2/+2 | |
Guenther | |||||
2011-02-09 | s3-waf: support non-default krb5-config and cups-config locations. | Günther Deschner | 1 | -7/+9 | |
Guenther | |||||
2011-02-09 | tevent: Fix typos | Volker Lendecke | 1 | -2/+2 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Feb 9 18:13:18 CET 2011 on sn-devel-104 | |||||
2011-02-09 | s3-rpc_server: We need a messaging context for rpc. | Andreas Schneider | 1 | -0/+3 | |
Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Wed Feb 9 17:26:00 CET 2011 on sn-devel-104 | |||||
2011-02-09 | s3-rpc_server: Fixed possible segfault with client_id. | Andreas Schneider | 1 | -0/+6 | |
2011-02-09 | s3:utils enable sharesec for registry shares | Christian Ambach | 1 | -1/+2 | |
Signed-off-by: Michael Adam <obnox@samba.org> Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Wed Feb 9 16:41:31 CET 2011 on sn-devel-104 | |||||
2011-02-09 | s3:net idmap: implement net idmap delete | Gregor Beck | 1 | -5/+137 | |
Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Wed Feb 9 15:06:06 CET 2011 on sn-devel-104 | |||||
2011-02-09 | s3:net idmap dump: report correct database file when failed to open idmap db. | Michael Adam | 1 | -1/+1 | |
2011-02-09 | s3:net idmap dump: use net_idmap_dbfile | Gregor Beck | 1 | -7/+15 | |
2011-02-09 | s3:net idmap restore: correctly abort operation if dbfile could not be ↵ | Michael Adam | 1 | -0/+5 | |
determined | |||||
2011-02-09 | s3:net idmap: fix error reporting in net_idmap_dbfile() | Michael Adam | 1 | -3/+10 | |
The last case which results in dbfile == NULL is not an out of memory case but means no --db has been specified and the idmap backend is not supported for auto-determining the idmap tdb file. | |||||
2011-02-09 | s3:net factor out net_idmap_dbfile | Gregor Beck | 1 | -33/+37 | |
2011-02-09 | s3:net idmap restore: fix segfault on missing input file | Gregor Beck | 1 | -0/+6 | |
2011-02-09 | s3:net add option --db | Gregor Beck | 2 | -1/+3 | |
2011-02-09 | s3:testparm: add "--option" to testparm | Michael Adam | 1 | -0/+1 | |
This way one can test the --option feature with testparm. E.g.: testparm -s -v --option="parameter=value" | grep parameter should print "parameter = value" |