summaryrefslogtreecommitdiffstats
path: root/source4
Commit message (Collapse)AuthorAgeFilesLines
...
* s4:dsdb/common/util.c - add a call which determines centrally the forest DNS ↵Matthias Dieter Wallnöfer2010-04-131-0/+19
| | | | domainname
* s4:remove "samdb_root_dn", "samdb_base_dn", "samdb_config_dn" and ↵Matthias Dieter Wallnöfer2010-04-131-20/+0
| | | | | | "samdb_schema_dn" They aren't needed anymore.
* Revert "s4:prefer "samdb_*_dn" basedn calls over the "ldb_get_*_dn" functions"Matthias Dieter Wallnöfer2010-04-1320-37/+43
| | | | | We should use the "ldb_get_*_basedn" calls since they are available in the LDB library.
* s4:objectclass LDB module - remove a unneeded newlineMatthias Dieter Wallnöfer2010-04-131-2/+1
|
* s4-tevent: up tevent version numberAndrew Tridgell2010-04-131-2/+2
| | | | tevent now has tevent_re_initialise() which is needed for the s4 build
* s3/s4:netlogon IDL - fix up "struct netr_SamInfo6" regarding the "forest" ↵Matthias Dieter Wallnöfer2010-04-121-2/+2
| | | | | | | attribute According to MS-NRPC 2.2.1.4.13 this should be the DNS domainname, not the forest one.
* s4:auth/auth_sam_reply.c - fix counter typesMatthias Dieter Wallnöfer2010-04-121-3/+3
|
* s4:prefer "samdb_*_dn" basedn calls over the "ldb_get_*_dn" functionsMatthias Dieter Wallnöfer2010-04-124-4/+4
| | | | Purely cosmetic change.
* s4:torture/ldap/ldap_sort.c - There should be used the "base_dn" not the ↵Matthias Dieter Wallnöfer2010-04-121-2/+2
| | | | | | "root_dn" for the sort test The (forest) "root_dn" hasn't always to be the same as the (domain) "base_dn"!
* s4:tortore/rpc/spoolss.c: fix declaration after code warningStefan Metzmacher2010-04-121-10/+10
| | | | metze
* s4-ldb: enable waf build of ldb without ldap backendAndrew Tridgell2010-04-121-2/+3
| | | | | this is useful for cross-compilation testing, where getting all the ldap deps installed can be hard
* Fixed a problem with provision missing the default_dir/etc directory.Nadezhda Ivanova2010-04-121-2/+2
|
* s4:heimdal_build/wscript_build: avoid global deps for hostcc stuffStefan Metzmacher2010-04-121-0/+3
| | | | metze
* lib/replace/wscript: inline LIBREPLACE_EXT into 'replace' as the autoconf ↵Stefan Metzmacher2010-04-122-2/+2
| | | | | | system does metze
* s4:param/wscript_build: 'dl' is provides via 'replace'Stefan Metzmacher2010-04-121-1/+1
| | | | metze
* s4:heimdal_build/wscript: rename HEIMDAL_ROKEN_H => HEIMDAL_ROKEN_HOSTCCStefan Metzmacher2010-04-121-8/+10
| | | | metze
* lib/replace/wscript: rename LIBREPLACE_H => LIBREPLACE_HOSTCCStefan Metzmacher2010-04-121-3/+5
| | | | metze
* s4-ldb: fixed a crash bug for non-UTF8 stringsAndrew Tridgell2010-04-121-1/+3
| | | | | when one of the strings was not valid UTF8, we would try to dereference NULL
* s4-waf: inline LIBREPLACE_NETWORK into 'replace'Stefan Metzmacher2010-04-122-4/+4
| | | | metze
* s4/libnet: Allocate mem in supplied mem_ctxKamen Mazdrashki2010-04-121-2/+2
| | | | | In this case, 'libnet_Vampire *r' may not be a pointer to a talloced memory.
* s4/py_net: Source code formatting fixKamen Mazdrashki2010-04-121-16/+17
|
* build: use a common autogen-waf.sh for all buildsAndrew Tridgell2010-04-122-49/+2
| | | | | the symlink will get updated with the right target when waf dist is used in each directory
* s4-net: Add definition of outf.Jelmer Vernooij2010-04-121-0/+2
|
* s4: fix a typoKamen Mazdrashki2010-04-121-1/+1
|
* s4/libnet: handle errors returned for DsAddEntry_v3 properlyKamen Mazdrashki2010-04-121-4/+3
| | | | | | It turns out ms-docs are little bit misleading - in case of no error, r->out.ctr->ctr3.err_data is not NULL, but error information (r->out.ctr->ctr3.err_data->v1.info) is NULL!
* s4/libnet: Add few new lines in the debug log so it is readable againKamen Mazdrashki2010-04-121-14/+16
|
* s4/libnet: Dump DRSUAPI_DIRERR_OK as unexpectedKamen Mazdrashki2010-04-121-2/+1
| | | | | | Actually DRSUAPI_DIRERR_OK is not valid error to be returned. I introduce it in the IDL so that I can use it in enum. So it should be dumped as Unexpected error code
* s4:dbspeed torture - improve also the TDB code partMatthias Dieter Wallnöfer2010-04-111-10/+9
| | | | | Always use the label "failed" on failures, always close the database context (child of "tmp_ctx") when deleting database file.
* s4:dbspeed torture - remove unneeded newlines on "torture_result"Matthias Dieter Wallnöfer2010-04-111-7/+7
| | | | According to Jelmer's post on the technical list.
* s4: Fix more test results to not conflict with subunit commands.Jelmer Vernooij2010-04-111-7/+7
|
* subunit: Remove more test output that could be interpreted by subunit.Jelmer Vernooij2010-04-114-51/+51
|
* subunit: Support formatting compatible with upstream subunit, for consistency.Jelmer Vernooij2010-04-1139-278/+279
| | | | | | Upstream subunit makes a ":" after commands optional, so I've fixed any places where we might trigger commands accidently. I've filed a bug about this in subunit.
* s4:samdb_server_site_dn - free unused DNs in the right wayMatthias Dieter Wallnöfer2010-04-111-2/+2
|
* s4:torture - "dbspeed" test - add newlines as we have them in the other ↵Matthias Dieter Wallnöfer2010-04-111-2/+2
| | | | failure messages
* s4:torture - "dbspeed" testMatthias Dieter Wallnöfer2010-04-111-2/+2
| | | | Calculate the leaks on base of the "tmp_ctx" not the torture context.
* s4:torture - "dbspeed" testMatthias Dieter Wallnöfer2010-04-111-10/+17
| | | | Unify error handling.
* s4:torture - "dbspeed" testMatthias Dieter Wallnöfer2010-04-111-3/+4
| | | | Add more "talloc_free"s where needed or useful.
* s4:auth Remove event context from anonymous_session()Andrew Bartlett2010-04-117-123/+119
| | | | | | | | This should always return a simple structure with no need to consult a DB, so remove the event context, and simplfy to call helper functions that don't look at privilages. Andrew Bartlett
* selftest: Support passing --load-list to test runners.Jelmer Vernooij2010-04-101-0/+15
|
* torture: Simplify torture suite running, call restricted test suite runner.Jelmer Vernooij2010-04-101-43/+29
|
* smbtorture: Remove unused shell feature.Jelmer Vernooij2010-04-101-51/+1
|
* smbtorture: Support --load-list argument.Jelmer Vernooij2010-04-101-16/+30
|
* s4:registry - "patchfile_preg.c" - use more "sizeof"s on length specificationMatthias Dieter Wallnöfer2010-04-101-6/+6
| | | | This makes the code more clear to read.
* s4:registry - "patchfile_preg.c" - fix indentationMatthias Dieter Wallnöfer2010-04-101-5/+9
|
* s4:registry - "patchfile_preg.c" - fix a datatypeMatthias Dieter Wallnöfer2010-04-101-1/+1
| | | | This should be an "uint16_t" (only two bytes are written).
* s4:dsdb Don't use the permissive modify control on schemaInfo updatesAndrew Bartlett2010-04-101-2/+2
| | | | | | | | | The use of 'replace' is enough to wipe out the old value, whatever it is, we don't need to set 'permissive modify' too. Additionally, this seems to be causing trouble for the OpenLDAP backend Andrew Bartlett
* s4:dsdb Don't return operational attributes on special DNsAndrew Bartlett2010-04-101-0/+5
|
* s4:rootdse Implement "tokenGroups" in the rootDSEAndrew Bartlett2010-04-101-0/+18
| | | | | | | This returns the currently connected user's full token. This is very useful for debugging, and should be used in ACL tests. Andrew Bartlett
* s4:dsdb Improve error message in extended_dn_inAndrew Bartlett2010-04-101-1/+1
| | | | | | | This error occours when an extended DN cannot be resolved, so it's most helpful to print the problematic extended DN. Andrew Bartlett
* s4:ldif_handlers tokenGroups are SIDsAndrew Bartlett2010-04-101-0/+1
|