Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-05-02 | PAM_SSS: report error code if write fails | Jakub Hrozek | 1 | -2/+2 | |
clang had reported this as "value of ret is never used", I think it would be nice to report a meaningful error message. | |||||
2012-05-02 | PYHBAC: Return NULL on failure | Jakub Hrozek | 1 | -0/+1 | |
The error handler would simply fall through instead of returning NULL. | |||||
2012-05-02 | RESPONDER: check return value from confdb_get_int | Jakub Hrozek | 1 | -0/+7 | |
sss_process_init forgot to check return value of confdb_get_int | |||||
2012-05-02 | LDAP: check return value of sysdb_attrs_get_el | Jakub Hrozek | 1 | -0/+7 | |
2012-05-02 | SERVER: use the correct return code of sss_atomic_write_s | Jakub Hrozek | 1 | -1/+1 | |
2012-05-02 | SSH: return NULL on error in ssh_host_pubkeys_format_known_host_plain | Jakub Hrozek | 1 | -1/+2 | |
The 'result' pointer must be initialized tin order to always return a defined value. | |||||
2012-05-02 | SYSDB: check return value | Jakub Hrozek | 1 | -2/+2 | |
In addition to testing the number of elements, also check the return value of sysdb_attrs_get_el. | |||||
2012-05-02 | SYSDB: return EOK if empty message is passed into get_rm_msg | Jakub Hrozek | 1 | -0/+1 | |
If the code never entered the loop in get_rm_message, we would return arbitrary return value. | |||||
2012-05-02 | SUDO: Return ret, not EOK | Jakub Hrozek | 1 | -1/+1 | |
This patch fixes bad refactoring - the function used to return value directly on error and EOK as the last statement. If was then converted into using goto label, but the last statement was still returning EOK instead of the value it should. | |||||
2012-05-01 | Allow different SID representations in libidmap | Sumit Bose | 5 | -13/+925 | |
Besides as strings it is now possible to use binary SIDs or a struct containing all SID information. Functions to convert between these formats are added as well. | |||||
2012-05-01 | execv, excvp and exec_child never return EOK | Stef Walter | 4 | -18/+11 | |
* So don't need to handle that case | |||||
2012-04-24 | NSS: Only return data from initgroups once | Jakub Hrozek | 1 | -3/+10 | |
Do not let nss_cmd_initgroups_search() return data itself, but let the caller return data. This is more intuitive and more consistent with the rest of the nss_cmd_*_search() functions. Also fixes a typo - nss_cmd_initgroups_cb used to call getpw_send_reply instead of initgr_send_reply. | |||||
2012-04-24 | Lowercase group members in case-insensitive domains | Jakub Hrozek | 1 | -1/+7 | |
https://fedorahosted.org/sssd/ticket/1312 | |||||
2012-04-24 | murmurhash: Relax inline requirement | Stephen Gallagher | 1 | -2/+2 | |
2012-04-24 | Two fixes in responder subdomain code | Jan Zeleny | 2 | -1/+7 | |
2012-04-24 | fix copy and paste error in comment | Pavel Březina | 1 | -1/+1 | |
2012-04-24 | SSH: Add support for hashed known_hosts | Jan Cholasta | 10 | -40/+212 | |
https://fedorahosted.org/sssd/ticket/1203 | |||||
2012-04-24 | UTIL: Add HMAC-SHA-1 function | Jan Cholasta | 4 | -0/+163 | |
2012-04-24 | Utilize sysdb context within be_req in HBAC | Jan Zeleny | 1 | -2/+2 | |
2012-04-24 | Detect subdomain request in IPA access provider | Jan Zeleny | 1 | -0/+10 | |
2012-04-24 | Accept be_req instead if be_ctx in LDAP access provider | Jan Zeleny | 3 | -15/+16 | |
2012-04-24 | Carry sysdb context and domain info in be_req structure | Jan Zeleny | 2 | -0/+5 | |
2012-04-24 | Basic support for subdomains in auth provider | Jan Zeleny | 3 | -3/+13 | |
2012-04-24 | Send PAM requests for subdomains to the right provider | Jan Zeleny | 1 | -3/+41 | |
2012-04-24 | Add ID operations in subdomains | Jan Zeleny | 3 | -0/+276 | |
2012-04-24 | Add s2n extended operation | Sumit Bose | 2 | -0/+667 | |
2012-04-24 | Moved expand_homedir_template() from NSS responder to utility code | Jan Zeleny | 3 | -108/+168 | |
2012-04-24 | New config option for subdomains | Jan Zeleny | 4 | -0/+29 | |
subdomain_homedir - if set, it contains default value, can be overriden in further processing | |||||
2012-04-24 | Add domain name to get_account_info request | Sumit Bose | 3 | -0/+11 | |
2012-04-24 | IPA: Add get-domains target | Sumit Bose | 8 | -0/+445 | |
2012-04-24 | data provider: added subdomains | Sumit Bose | 7 | -4/+197 | |
2012-04-24 | Check sub-domains in nss_cmd_get{pwuid|grgid}_search() | Sumit Bose | 1 | -4/+26 | |
2012-04-24 | Ask for subdomains in responder in the first request after startup | Jan Zeleny | 1 | -0/+30 | |
2012-04-24 | Retrieve subdomains if there is a request for fully qualified user | Jan Zeleny | 3 | -31/+192 | |
2012-04-24 | Modified responder_get_domain() | Jan Zeleny | 13 | -22/+51 | |
Now it checks for subdomains as well as for the domain itself | |||||
2012-04-24 | Responder part of the subdomain retrieval work | Jan Zeleny | 7 | -0/+392 | |
2012-04-24 | Add conn_name to allow different names for domains and connections | Jan Zeleny | 5 | -4/+6 | |
2012-04-24 | Add some utility functions for subdomains | Jan Zeleny | 3 | -0/+120 | |
2012-04-24 | Sysdb routines for subdomains | Jan Zeleny | 5 | -81/+852 | |
2012-04-20 | Fix typo: retreiving->retrieving | Yuri Chornoivan | 1 | -1/+1 | |
2012-04-20 | Get the RootDSE after binding if not successfull before | Jakub Hrozek | 1 | -26/+104 | |
https://fedorahosted.org/sssd/ticket/1258 | |||||
2012-04-20 | Two manual pages fixes | Marco Pizzoli | 2 | -1/+3 | |
2012-04-20 | Test RFC2307bis and RFC2307 option maps | Jakub Hrozek | 1 | -0/+28 | |
https://fedorahosted.org/sssd/ticket/1281 Only user, group and autofs maps are different. Services and netgroups are using the same map. | |||||
2012-04-20 | Warn on 'make update-po' if there are manpages not listed in po4a.cfg | Jakub Hrozek | 1 | -0/+7 | |
https://fedorahosted.org/sssd/ticket/1219 | |||||
2012-04-20 | Document sss_tools better | Jakub Hrozek | 9 | -0/+35 | |
https://fedorahosted.org/sssd/ticket/917 | |||||
2012-04-20 | Convert read and write operations to sss_atomic_read | Jakub Hrozek | 15 | -313/+236 | |
https://fedorahosted.org/sssd/ticket/1209 | |||||
2012-04-20 | Move atomic io function to a separate module | Jakub Hrozek | 5 | -52/+111 | |
We'll be using it on various places of the SSSD. The function is in its own file to allow using just the one piece without having to drag in the whole util.c module. | |||||
2012-04-20 | sss_atomic_io: Do not fail reads with EPIPE if there is not enough data to read | Jakub Hrozek | 2 | -1/+208 | |
Also adds a unit test for sss_atomic_io() | |||||
2012-04-20 | sdap_check_aliases must not error when detects the same user | Jakub Hrozek | 1 | -13/+31 | |
https://fedorahosted.org/sssd/ticket/1307 | |||||
2012-04-20 | Make the monitor SIGKILL time configurable | Jakub Hrozek | 6 | -3/+43 | |
https://fedorahosted.org/sssd/ticket/1119 |