Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-02-13 | Fix uninitialized value error in proxy provider | Stephen Gallagher | 1 | -1/+1 | |
Coverity #12467 | |||||
2012-02-04 | NSS: Add individual timeouts for entry types | Stephen Gallagher | 1 | -7/+7 | |
https://fedorahosted.org/sssd/ticket/1016 | |||||
2012-01-27 | PROXY: add support for enumerating services | Stephen Gallagher | 1 | -0/+7 | |
2012-01-27 | PROXY: add support for service lookups (non-enumeration) | Stephen Gallagher | 1 | -0/+28 | |
2011-12-16 | Use the case sensitivity flag in the proxy provider | Jakub Hrozek | 1 | -150/+144 | |
2011-11-22 | Cleanup: Remove unused parameters | Jakub Hrozek | 1 | -1/+1 | |
2011-11-07 | Fixed empty loginShell in proxy provider | Jan Zeleny | 1 | -4/+32 | |
https://fedorahosted.org/sssd/ticket/892 | |||||
2011-10-13 | SysDB commands that save lastUpdate allows this value to be passed in | Pavel Březina | 1 | -10/+20 | |
https://fedorahosted.org/sssd/ticket/836 | |||||
2011-10-03 | Use explicit base 10 for converting strings to integers | Jakub Hrozek | 1 | -2/+2 | |
https://fedorahosted.org/sssd/ticket/1013 | |||||
2011-08-25 | New DEBUG facility - conversion | Pavel Březina | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/925 Conversion of the old debug_level format to the new one. (only where it was necessary) Removed: SSS_DEFAULT_DEBUG_LEVEL (completely replaced with SSSDBG_DEFAULT) | |||||
2011-08-15 | sysdb refactoring: memory context deleted | Jan Zeleny | 1 | -9/+9 | |
This patch deletes memory context parameter in those places in sysdb where it is not necessary. The code using modified functions has been updated. Tests updated as well. | |||||
2011-08-15 | sysdb refactoring: deleted domain variables in sysdb API | Jan Zeleny | 1 | -9/+9 | |
The patch also updates code using modified functions. Tests have also been adjusted. | |||||
2011-06-15 | Fix proxy provider return code for secondary missing groups | Sumit Bose | 1 | -1/+3 | |
2011-01-21 | Delete attributes that are removed from LDAP | Stephen Gallagher | 1 | -4/+8 | |
Sometimes, a value in LDAP will cease to exist (the classic example being shadowExpire). We need to make sure we purge that value from SSSD's sysdb as well. https://fedorahosted.org/sssd/ticket/750 | |||||
2010-12-02 | Add a special filter type to handle enumerations | Sumit Bose | 1 | -32/+16 | |
2010-11-15 | Fix const cast issue with sysdb_attrs_users_from_str_list | Stephen Gallagher | 1 | -9/+9 | |
2010-10-26 | Always use uint32_t for UID/GID numbers | Jakub Hrozek | 1 | -4/+3 | |
2010-10-25 | Implement netgroups for proxy provider | Sumit Bose | 1 | -2/+2 | |
2010-10-25 | Add netgroups infrastructure to proxy provider | Sumit Bose | 1 | -0/+14 | |
2010-10-18 | Use unsigned long for conversion to id_t | Jakub Hrozek | 1 | -2/+2 | |
We used strtol() on a number of places to convert into uid_t or gid_t from a string representation such as LDAP attribute, but on some platforms, unsigned long might be necessary to store big id_t values. This patch converts to using strtoul() instead. | |||||
2010-09-08 | Dead assignments cleanup in providers code | Jan Zeleny | 1 | -2/+0 | |
Dead assignments were deleted. Also prototype of function sdap_access_decide_offline() has been changed, since its return code was never used. Ticket: #586 | |||||
2010-09-02 | Fixed uninialized value in proxy_id provider | Jan Zeleny | 1 | -0/+2 | |
In function get_pw_name when allocation of memory fails, there were two codepaths which could cause printing of undefined value. This patch fixes both cases. Ticket: #580 | |||||
2010-06-30 | Split proxy.c into smaller files | Stephen Gallagher | 1 | -0/+1155 | |
proxy.c was growing too large to manage (and some graphical development tools could no longer open it because of memory limitations). This patch splits proxy.c into the following files: proxy_init.c: Setup routines for the plugin proxy_id.c: Functions to handle user and group lookups proxy_auth.c: Functions to handle PAM interactions proxy_common.c: Common utility routines |