<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sssd.git/src/providers/ldap/sdap_async_sudo.c, branch subdommem</title>
<subtitle>System Security Services Daemon [okos' clone]</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/'/>
<entry>
<title>LDAP: new SDAP domain structure</title>
<updated>2013-06-06T22:14:13+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2013-05-27T06:48:02+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=749cfb5d3270b5daf389d51a0dbd3fd2aec6e05d'/>
<id>749cfb5d3270b5daf389d51a0dbd3fd2aec6e05d</id>
<content type='text'>
Previously an sdap_id_ctx was always tied to one domain with a single
set of search bases. But with the introduction of Global Catalog
lookups, primary domain and subdomains might have different search
bases.

This patch introduces a new structure sdap_domain that contains an sssd
domain or subdomain and a set of search bases. With this patch, there is
only one sdap_domain that describes the primary domain.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously an sdap_id_ctx was always tied to one domain with a single
set of search bases. But with the introduction of Global Catalog
lookups, primary domain and subdomains might have different search
bases.

This patch introduces a new structure sdap_domain that contains an sssd
domain or subdomain and a set of search bases. With this patch, there is
only one sdap_domain that describes the primary domain.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove sysdb as a be context structure member</title>
<updated>2013-01-21T21:17:33+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-09T21:23:25+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=df0596ec12bc5091608371e2977f3111241e8caf'/>
<id>df0596ec12bc5091608371e2977f3111241e8caf</id>
<content type='text'>
The sysdb context is already available through the 'domain' structure.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The sysdb context is already available through the 'domain' structure.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add domain arguments to sysdb sudo functions</title>
<updated>2013-01-15T09:53:03+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-08T06:25:47+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=b0fa48b0d612b46a86e45f8e4b5d9feae9784c2b'/>
<id>b0fa48b0d612b46a86e45f8e4b5d9feae9784c2b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make sysdb_custom_subtree_dn() require a domain.</title>
<updated>2013-01-15T09:49:20+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-06T07:04:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=9675bccabff4e79d224f64611ad9ff3e073b488e'/>
<id>9675bccabff4e79d224f64611ad9ff3e073b488e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix tevent_req style for sdap_async_sudo.</title>
<updated>2013-01-07T14:42:44+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-06T06:59:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=55b8413d20d15f342a5c08a3077ca22028fd1a0d'/>
<id>55b8413d20d15f342a5c08a3077ca22028fd1a0d</id>
<content type='text'>
Use correct name for _done() function from the caller.
Remove unneded initializzations to NULL for a lot of variables hat are going to
be assigned as the first thing done in the functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use correct name for _done() function from the caller.
Remove unneded initializzations to NULL for a lot of variables hat are going to
be assigned as the first thing done in the functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>set ret to EOK after for loop in sdap_sudo_purge_sudoers</title>
<updated>2013-01-02T16:39:44+00:00</updated>
<author>
<name>Pavel Březina</name>
<email>pbrezina@redhat.com</email>
</author>
<published>2013-01-02T10:09:32+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=fc647b8eb5bca901658dedf3dbda2f35c63a86f2'/>
<id>fc647b8eb5bca901658dedf3dbda2f35c63a86f2</id>
<content type='text'>
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).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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).
</pre>
</div>
</content>
</entry>
<entry>
<title>Unify usage of sysdb transactions</title>
<updated>2012-08-23T16:09:18+00:00</updated>
<author>
<name>Michal Zidek</name>
<email>mzidek@redhat.com</email>
</author>
<published>2012-08-16T16:48:53+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=21d485184df986e1a123f70c689517386e51a5ce'/>
<id>21d485184df986e1a123f70c689517386e51a5ce</id>
<content type='text'>
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).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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).
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix uninitialized values</title>
<updated>2012-07-18T18:07:45+00:00</updated>
<author>
<name>Nick Guay</name>
<email>nguay@redhat.com</email>
</author>
<published>2012-07-18T15:55:35+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=8bbf89c5ab798c112773fe23515c3a9df56dde71'/>
<id>8bbf89c5ab798c112773fe23515c3a9df56dde71</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/1379
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/1379
</pre>
</div>
</content>
</entry>
<entry>
<title>sudo ldap provider: return number of downloaded rules in sdap_sudo_refresh_recv()</title>
<updated>2012-06-29T15:37:18+00:00</updated>
<author>
<name>Pavel Březina</name>
<email>pbrezina@redhat.com</email>
</author>
<published>2012-05-13T19:27:38+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=4684d427e7e10642ceff62128c3d22db87872c4c'/>
<id>4684d427e7e10642ceff62128c3d22db87872c4c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>sudo ldap provider: when sysdb filter is NULL remove downloaded rules</title>
<updated>2012-06-29T15:37:17+00:00</updated>
<author>
<name>Pavel Březina</name>
<email>pbrezina@redhat.com</email>
</author>
<published>2012-05-09T12:23:57+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=6ea68b049dd507409d454100978ee125febc69ea'/>
<id>6ea68b049dd507409d454100978ee125febc69ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
