summaryrefslogtreecommitdiff
path: root/src/providers/ldap/sdap_async_sudo.c
AgeCommit message (Collapse)AuthorFilesLines
2013-01-02set ret to EOK after for loop in sdap_sudo_purge_sudoersPavel Březina1-0/+2
If we are unable to delete some rule from cache we print a debug message and ignore the error. Thus we should set ret to EOK after the for loop otherwise we return whether the last rule was deleted successfully or not. This also removes compilation warning that ret may be used uninitialized (when we don't go inside the loop at all).
2012-08-23Unify usage of sysdb transactionsMichal Zidek1-2/+5
Removing bad examples of usage of sysdb_transaction_start/commit/end functions and making it more consistent (all files except of src/db/sysdb_*.c).
2012-07-18Fix uninitialized valuesNick Guay1-1/+1
https://fedorahosted.org/sssd/ticket/1379
2012-06-29sudo ldap provider: return number of downloaded rules in ↵Pavel Březina1-1/+8
sdap_sudo_refresh_recv()
2012-06-29sudo ldap provider: when sysdb filter is NULL remove downloaded rulesPavel Březina1-5/+61
2012-06-29sudo ldap provider: find highest USNPavel Březina1-10/+24
2012-06-29sudo ldap provider: add expiration time to each rulePavel Březina1-4/+11
2012-06-29sudo ldap provider: add domain info in sdap_sudo_refresh_statePavel Březina1-0/+2
2012-06-29sudo ldap provider: add sysdb ctx in sdap_sudo_refresh_statePavel Březina1-7/+7
2012-06-29sudo ldap provider: give sdap_sudo_refresh_send() search and purge filtersPavel Březina1-272/+85
2012-06-29sudo ldap provider: move async routines to sdap_async_sudo.cPavel Březina1-0/+710