Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-04-11 | libcli/auth: Fix an uninitialized variable | Volker Lendecke | 1 | -2/+1 | |
value.dptr was used uninitialized in the "goto done;" | |||||
2010-04-11 | nsswitch/wbinfo: Fix the S4 header check | Kai Blin | 1 | -1/+1 | |
2010-04-11 | idl: Use C-style comments, because cpp on some platforms doesn't accept | Jelmer Vernooij | 1 | -21/+21 | |
// comments. | |||||
2010-04-11 | s4:dbspeed torture - improve also the TDB code part | Matthias Dieter Wallnöfer | 1 | -10/+9 | |
Always use the label "failed" on failures, always close the database context (child of "tmp_ctx") when deleting database file. | |||||
2010-04-11 | s4:dbspeed torture - remove unneeded newlines on "torture_result" | Matthias Dieter Wallnöfer | 1 | -7/+7 | |
According to Jelmer's post on the technical list. | |||||
2010-04-11 | s4: Fix more test results to not conflict with subunit commands. | Jelmer Vernooij | 1 | -7/+7 | |
2010-04-11 | subunit: Cope with lowercase test results in tap2subunit. | Jelmer Vernooij | 2 | -5/+16 | |
Also submitted upstream. | |||||
2010-04-11 | subunit: Remove more test output that could be interpreted by subunit. | Jelmer Vernooij | 4 | -51/+51 | |
2010-04-11 | subunit: Support formatting compatible with upstream subunit, for consistency. | Jelmer Vernooij | 41 | -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-11 | selftest: Accept 'testing:' to introduce new tests. | Jelmer Vernooij | 1 | -1/+1 | |
2010-04-11 | [Bug 7345] Incomplete description of function return values in libsmbclient.h | Derrell Lipman | 1 | -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-11 | s3: Use sizeof(chal) instead of a constant | Volker Lendecke | 1 | -1/+1 | |
2010-04-11 | s3: Use talloc_stackframe() in user_in_group | Volker Lendecke | 1 | -7/+1 | |
2010-04-11 | s3: Use talloc_stackframe() in user_in_group_sid | Volker Lendecke | 1 | -8/+1 | |
2010-04-11 | s3: Use talloc_stackframe() in create_token_from_username | Volker Lendecke | 1 | -7/+1 | |
2010-04-11 | s3: Fix a memleak in user_in_group_sid | Volker Lendecke | 1 | -0/+1 | |
2010-04-11 | s3: Remove the make_auth_methods routine | Volker Lendecke | 10 | -72/+101 | |
This was just TALLOC_ZERO_P | |||||
2010-04-11 | s3: Fix a typo | Volker Lendecke | 1 | -1/+1 | |
2010-04-11 | s3: Make "auth_context" its own talloc parent | Volker Lendecke | 5 | -16/+9 | |
Remove "mem_ctx" from "struct auth_context" | |||||
2010-04-11 | s3: Fix some nonempty lines | Volker Lendecke | 6 | -36/+35 | |
2010-04-11 | s4:samdb_server_site_dn - free unused DNs in the right way | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
2010-04-11 | s4:torture - "dbspeed" test - add newlines as we have them in the other ↵ | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
failure messages | |||||
2010-04-11 | s4:torture - "dbspeed" test | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
Calculate the leaks on base of the "tmp_ctx" not the torture context. | |||||
2010-04-11 | s4:torture - "dbspeed" test | Matthias Dieter Wallnöfer | 1 | -10/+17 | |
Unify error handling. | |||||
2010-04-11 | s4:torture - "dbspeed" test | Matthias Dieter Wallnöfer | 1 | -3/+4 | |
Add more "talloc_free"s where needed or useful. | |||||
2010-04-11 | s3: Cosmetics -- I could not spot where "chal" was initialized | Volker Lendecke | 1 | -1/+1 | |
2010-04-11 | s4:auth Remove event context from anonymous_session() | Andrew Bartlett | 7 | -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-10 | s3: Use IS_DC macro in get_global_sam_name() | Volker Lendecke | 1 | -1/+1 | |
Much as I dislike macros, this one is there. So why not use it... | |||||
2010-04-10 | s3: Remove domain selection from dual_pam_auth | Volker Lendecke | 1 | -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-10 | subunit: Don't abort when receiving test results from tests that weren't | Jelmer Vernooij | 1 | -11/+32 | |
announced. | |||||
2010-04-10 | selftest: Support passing --load-list to test runners. | Jelmer Vernooij | 2 | -5/+30 | |
2010-04-10 | torture: Simplify torture suite running, call restricted test suite runner. | Jelmer Vernooij | 3 | -43/+41 | |
2010-04-10 | smbtorture: Remove unused shell feature. | Jelmer Vernooij | 1 | -51/+1 | |
2010-04-10 | smbtorture: Support --load-list argument. | Jelmer Vernooij | 1 | -16/+30 | |
2010-04-10 | s4:registry - "patchfile_preg.c" - use more "sizeof"s on length specification | Matthias Dieter Wallnöfer | 1 | -6/+6 | |
This makes the code more clear to read. | |||||
2010-04-10 | s4:registry - "patchfile_preg.c" - fix indentation | Matthias Dieter Wallnöfer | 1 | -5/+9 | |
2010-04-10 | s4:registry - "patchfile_preg.c" - fix a datatype | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
This should be an "uint16_t" (only two bytes are written). | |||||
2010-04-10 | libwbclient: Fix a memleak in wbcGetDisplayName | Volker Lendecke | 1 | -0/+1 | |
2010-04-10 | libwbclient: Ensure correct 0-termination in wbcGetSidAliases | Volker Lendecke | 1 | -0/+1 | |
2010-04-10 | s3: Check 0 termination in GETALIASES | Volker Lendecke | 1 | -7/+13 | |
2010-04-10 | s4:dsdb Don't use the permissive modify control on schemaInfo updates | Andrew Bartlett | 1 | -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 | |||||
2010-04-10 | s4:dsdb Don't return operational attributes on special DNs | Andrew Bartlett | 1 | -0/+5 | |
2010-04-10 | s4:rootdse Implement "tokenGroups" in the rootDSE | Andrew Bartlett | 1 | -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 | |||||
2010-04-10 | s4:dsdb Improve error message in extended_dn_in | Andrew Bartlett | 1 | -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 | |||||
2010-04-10 | s4:ldif_handlers tokenGroups are SIDs | Andrew Bartlett | 1 | -0/+1 | |
2010-04-10 | s4:rpc_server Fix segfault in modified SamLogon handling | Andrew Bartlett | 1 | -0/+1 | |
2010-04-10 | s4:provision Don't make the 'slaptest' call produce errors | Andrew Bartlett | 1 | -6/+3 | |
Adding -n 0 also allows us to check the error code too Andrew Bartlett | |||||
2010-04-10 | s4:rpc_server Add all SIDs into the netlogon SamLogon reply | Andrew Bartlett | 1 | -32/+52 | |
We were missing the SIDs that are not in the domain. | |||||
2010-04-10 | s4:schema Try to fix OpenLDAP backend after schema reload support. | Andrew Bartlett | 1 | -4/+2 | |
If we can't get @REPLCHANGED, default to a value of 0. Andrew Bartlett | |||||
2010-04-10 | s4:heimdal Create a new PAC when impersonating a user with S4U2Self | Andrew Bartlett | 1 | -4/+46 | |
If we don't do this, the PAC is given for the machine accout, not the account being impersonated. Andrew Bartlett |