<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sssd.git/src/tools/sss_debuglevel.c, branch wip</title>
<subtitle>Unnamed repository; edit this file to name it for gitweb.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/'/>
<entry>
<title>Make DEBUG macro invocations variadic</title>
<updated>2014-02-12T21:30:55+00:00</updated>
<author>
<name>Nikolai Kondrashov</name>
<email>Nikolai.Kondrashov@redhat.com</email>
</author>
<published>2014-02-12T15:12:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=a3c8390d19593b1e5277d95bfb4ab206d4785150'/>
<id>a3c8390d19593b1e5277d95bfb4ab206d4785150</id>
<content type='text'>
Use a script to update DEBUG macro invocations to use it as a variadic
macro, supplying format string and its arguments directly, instead of
wrapping them in parens.

This script was used to update the code:

grep -rwl --include '*.[hc]' DEBUG . |
    while read f; do
        mv "$f"{,.orig}
        perl -e \
            'use strict;
             use File::Slurp;
             my $text=read_file(\*STDIN);
             $text=~s#(\bDEBUG\s*\([^(]+)\((.*?)\)\s*\)\s*;#$1$2);#gs;
             print $text;' &lt; "$f.orig" &gt; "$f"
        rm "$f.orig"
    done

Reviewed-by: Jakub Hrozek &lt;jhrozek@redhat.com&gt;
Reviewed-by: Stephen Gallagher &lt;sgallagh@redhat.com&gt;
Reviewed-by: Simo Sorce &lt;simo@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use a script to update DEBUG macro invocations to use it as a variadic
macro, supplying format string and its arguments directly, instead of
wrapping them in parens.

This script was used to update the code:

grep -rwl --include '*.[hc]' DEBUG . |
    while read f; do
        mv "$f"{,.orig}
        perl -e \
            'use strict;
             use File::Slurp;
             my $text=read_file(\*STDIN);
             $text=~s#(\bDEBUG\s*\([^(]+)\((.*?)\)\s*\)\s*;#$1$2);#gs;
             print $text;' &lt; "$f.orig" &gt; "$f"
        rm "$f.orig"
    done

Reviewed-by: Jakub Hrozek &lt;jhrozek@redhat.com&gt;
Reviewed-by: Stephen Gallagher &lt;sgallagh@redhat.com&gt;
Reviewed-by: Simo Sorce &lt;simo@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Include ext headers with #include &lt;foo.h&gt; - cont</title>
<updated>2013-11-04T09:52:15+00:00</updated>
<author>
<name>Pavel Reichl</name>
<email>pavel.reichl@redhat.com</email>
</author>
<published>2013-10-22T14:21:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=f7257ab0bcea6c41fab5a4677787f3075ecdcb64'/>
<id>f7257ab0bcea6c41fab5a4677787f3075ecdcb64</id>
<content type='text'>
Changing style of including header files from outside of sssd tree - from "header.h" to  &lt;header.h&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changing style of including header files from outside of sssd tree - from "header.h" to  &lt;header.h&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>TOOLS: Update all services with sss_debuglevel</title>
<updated>2013-07-19T15:36:48+00:00</updated>
<author>
<name>Ondrej Kos</name>
<email>okos@redhat.com</email>
</author>
<published>2013-07-19T13:37:03+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=943109edd1f6545f7d45d619f631b5d03c5c859b'/>
<id>943109edd1f6545f7d45d619f631b5d03c5c859b</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/2007

PAC, SSH, SUDO and AUTOFS services' debug levels weren't modified when
sss_debuglevel tool was used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/2007

PAC, SSH, SUDO and AUTOFS services' debug levels weren't modified when
sss_debuglevel tool was used.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add function get_next_domain()</title>
<updated>2013-02-10T21:08:47+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-14T22:04:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=0232747f04b650796db56fd7b487aee8a96fab03'/>
<id>0232747f04b650796db56fd7b487aee8a96fab03</id>
<content type='text'>
Use this function instead of explicitly calling domain-&gt;next

This function allows to get the next primary domain or to descend into the
subdomains and replaces also get_next_dom_or_subdom()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use this function instead of explicitly calling domain-&gt;next

This function allows to get the next primary domain or to descend into the
subdomains and replaces also get_next_dom_or_subdom()
</pre>
</div>
</content>
</entry>
<entry>
<title>Include talloc log in our debug facility</title>
<updated>2012-10-29T16:15:37+00:00</updated>
<author>
<name>Michal Zidek</name>
<email>mzidek@redhat.com</email>
</author>
<published>2012-10-15T13:24:15+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=9e2c64c6d4f5560e27207193efea6536a566865e'/>
<id>9e2c64c6d4f5560e27207193efea6536a566865e</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/1495
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/1495
</pre>
</div>
</content>
</entry>
<entry>
<title>sss_debuglevel: Multiple arguments are treated as error.</title>
<updated>2012-10-16T12:05:23+00:00</updated>
<author>
<name>Michal Zidek</name>
<email>mzidek@redhat.com</email>
</author>
<published>2012-10-12T11:59:09+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=31ddfc3c183054ca17b9c9f8f03ea8151db3b5b1'/>
<id>31ddfc3c183054ca17b9c9f8f03ea8151db3b5b1</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/1327
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/1327
</pre>
</div>
</content>
</entry>
<entry>
<title>tools_util.h provides signal_sssd function.</title>
<updated>2012-09-24T11:09:53+00:00</updated>
<author>
<name>Michal Zidek</name>
<email>mzidek@redhat.com</email>
</author>
<published>2012-09-10T16:16:26+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=7c2e91ac48b20e6699d5c98c9912ea6427453c95'/>
<id>7c2e91ac48b20e6699d5c98c9912ea6427453c95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Return value of fread in src/tools/sss_debuglevel.c no longer ignored.</title>
<updated>2012-08-03T09:10:25+00:00</updated>
<author>
<name>Michal Zidek</name>
<email>mzidek@redhat.com</email>
</author>
<published>2012-07-30T16:17:02+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=2e1b46d7acb03b22b27bbad2816b996db629d609'/>
<id>2e1b46d7acb03b22b27bbad2816b996db629d609</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/1426
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/1426
</pre>
</div>
</content>
</entry>
<entry>
<title>SSS_DEBUGLEVEL: silence analyzer warnings</title>
<updated>2012-05-03T15:46:17+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2012-04-25T14:45:06+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=3353308213d623b2ad0f0044859039c0f8cb7ef5'/>
<id>3353308213d623b2ad0f0044859039c0f8cb7ef5</id>
<content type='text'>
Errno was returned instead of ret.

The other hunk removes return code from fread - it is not needed, the
NULL termination of the string is ensured by initializing the buffer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Errno was returned instead of ret.

The other hunk removes return code from fread - it is not needed, the
NULL termination of the string is ensured by initializing the buffer.
</pre>
</div>
</content>
</entry>
<entry>
<title>Hide --debug option in sss_debuglevel</title>
<updated>2012-03-02T12:46:08+00:00</updated>
<author>
<name>Pavel Březina</name>
<email>pbrezina@redhat.com</email>
</author>
<published>2012-03-02T12:34:19+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=db6aabf673b5d4d12af00ab1d0ab8a56d7dc7aee'/>
<id>db6aabf673b5d4d12af00ab1d0ab8a56d7dc7aee</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/1224
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/1224
</pre>
</div>
</content>
</entry>
</feed>
