summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-04-12build: use a common autogen-waf.sh for all buildsAndrew Tridgell7-137/+33
the symlink will get updated with the right target when waf dist is used in each directory
2010-04-12build: cope with symlinks between build components in waf distAndrew Tridgell1-2/+50
This will allow us to have autogen-waf.sh be a symlink to ../buildtools/scripts/autogen-waf.sh in each library. That will prevent people from updating only the script in source4/, and forgetting to udpate the scripts in the other libs, as happened with commit f3f82496
2010-04-12s4-net: Add definition of outf.Jelmer Vernooij1-0/+2
2010-04-12build: added --minimum-library-version configure optionAndrew Tridgell2-0/+23
this allows the packager to override the default choice of system library version
2010-04-12s4: fix a typoKamen Mazdrashki1-1/+1
2010-04-12s4/libnet: handle errors returned for DsAddEntry_v3 properlyKamen Mazdrashki1-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!
2010-04-12s4/libnet: Add few new lines in the debug log so it is readable againKamen Mazdrashki1-14/+16
2010-04-12s4/libnet: Dump DRSUAPI_DIRERR_OK as unexpectedKamen Mazdrashki1-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
2010-04-11s3: Move serverinfo_to_SamInfoX to auth/server_info.cVolker Lendecke2-287/+287
2010-04-11s3: Move [make|free]_user_info to auth/user_info.cVolker Lendecke4-108/+146
2010-04-11s3: Move make_server_info_sam to auth/server_info_sam.cVolker Lendecke3-121/+152
2010-04-11s3: Move sanitize_username to lib/util_str.cVolker Lendecke3-8/+9
2010-04-11s3: Move make_server_info to auth/server_info.cVolker Lendecke4-32/+60
2010-04-11s3: Move check_sam_security to auth/check_sam.cVolker Lendecke3-486/+513
2010-04-11s3: Make check_sam_security publicVolker Lendecke2-20/+32
2010-04-11s3: Replace "auth_context" by "challenge" in need_to_increment_bad_pw_count argsVolker Lendecke1-5/+5
2010-04-11s3: Replace "auth_context" by "challenge" in sam_password_ok argsVolker Lendecke1-7/+10
2010-04-11s3: Move user_in_group() and create_token_from_username() to token_utils.cVolker Lendecke2-315/+315
Goal is to be able to call check_sam_security from winbind
2010-04-11libcli/auth: Fix an uninitialized variableVolker Lendecke1-2/+1
value.dptr was used uninitialized in the "goto done;"
2010-04-11nsswitch/wbinfo: Fix the S4 header checkKai Blin1-1/+1
2010-04-11idl: Use C-style comments, because cpp on some platforms doesn't acceptJelmer Vernooij1-21/+21
// comments.
2010-04-11s4:dbspeed torture - improve also the TDB code partMatthias Dieter Wallnöfer1-10/+9
Always use the label "failed" on failures, always close the database context (child of "tmp_ctx") when deleting database file.
2010-04-11s4:dbspeed torture - remove unneeded newlines on "torture_result"Matthias Dieter Wallnöfer1-7/+7
According to Jelmer's post on the technical list.
2010-04-11s4: Fix more test results to not conflict with subunit commands.Jelmer Vernooij1-7/+7
2010-04-11subunit: Cope with lowercase test results in tap2subunit.Jelmer Vernooij2-5/+16
Also submitted upstream.
2010-04-11subunit: Remove more test output that could be interpreted by subunit.Jelmer Vernooij4-51/+51
2010-04-11subunit: Support formatting compatible with upstream subunit, for consistency.Jelmer Vernooij41-292/+299
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.
2010-04-11selftest: Accept 'testing:' to introduce new tests.Jelmer Vernooij1-1/+1
2010-04-11[Bug 7345] Incomplete description of function return values in libsmbclient.hDerrell Lipman1-8/+14
- Fixed documentation on smbc_fstat(), smbc_statvfs(), and smbc_fstatvfs(): All were missing return value upon success - Fixed documentation on smbc_read: Documented return value upon EOF Derrell
2010-04-11s3: Use sizeof(chal) instead of a constantVolker Lendecke1-1/+1
2010-04-11s3: Use talloc_stackframe() in user_in_groupVolker Lendecke1-7/+1
2010-04-11s3: Use talloc_stackframe() in user_in_group_sidVolker Lendecke1-8/+1
2010-04-11s3: Use talloc_stackframe() in create_token_from_usernameVolker Lendecke1-7/+1
2010-04-11s3: Fix a memleak in user_in_group_sidVolker Lendecke1-0/+1
2010-04-11s3: Remove the make_auth_methods routineVolker Lendecke10-72/+101
This was just TALLOC_ZERO_P
2010-04-11s3: Fix a typoVolker Lendecke1-1/+1
2010-04-11s3: Make "auth_context" its own talloc parentVolker Lendecke5-16/+9
Remove "mem_ctx" from "struct auth_context"
2010-04-11s3: Fix some nonempty linesVolker Lendecke6-36/+35
2010-04-11s4:samdb_server_site_dn - free unused DNs in the right wayMatthias Dieter Wallnöfer1-2/+2
2010-04-11s4:torture - "dbspeed" test - add newlines as we have them in the other ↵Matthias Dieter Wallnöfer1-2/+2
failure messages
2010-04-11s4:torture - "dbspeed" testMatthias Dieter Wallnöfer1-2/+2
Calculate the leaks on base of the "tmp_ctx" not the torture context.
2010-04-11s4:torture - "dbspeed" testMatthias Dieter Wallnöfer1-10/+17
Unify error handling.
2010-04-11s4:torture - "dbspeed" testMatthias Dieter Wallnöfer1-3/+4
Add more "talloc_free"s where needed or useful.
2010-04-11s3: Cosmetics -- I could not spot where "chal" was initializedVolker Lendecke1-1/+1
2010-04-11s4:auth Remove event context from anonymous_session()Andrew Bartlett7-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
2010-04-10s3: Use IS_DC macro in get_global_sam_name()Volker Lendecke1-1/+1
Much as I dislike macros, this one is there. So why not use it...
2010-04-10s3: Remove domain selection from dual_pam_authVolker Lendecke1-53/+13
We're in a child, the parent already has chosen the domain by picking the right child to connect to. Metze, you've done work on winbind lately, so it goes to you: Please check :-)
2010-04-10subunit: Don't abort when receiving test results from tests that weren'tJelmer Vernooij1-11/+32
announced.
2010-04-10selftest: Support passing --load-list to test runners.Jelmer Vernooij2-5/+30
2010-04-10torture: Simplify torture suite running, call restricted test suite runner.Jelmer Vernooij3-43/+41