<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sssd.git/server/util, branch master</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>Rename server/ directory to src/</title>
<updated>2010-02-18T18:48:45+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-02-18T12:49:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=1c48b5a62f73234ed26bb20f0ab345ab61cda0ab'/>
<id>1c48b5a62f73234ed26bb20f0ab345ab61cda0ab</id>
<content type='text'>
Also update BUILD.txt
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also update BUILD.txt
</pre>
</div>
</content>
</entry>
<entry>
<title>Eliminate separate build tree for sss_client</title>
<updated>2010-02-18T18:48:44+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-02-17T14:14:40+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=8e9ac4d7443939ed0d152708d3877b29252d16fe'/>
<id>8e9ac4d7443939ed0d152708d3877b29252d16fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use macros to hide memcpy calls</title>
<updated>2010-02-18T18:48:44+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2010-02-10T12:01:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=29e9f5e711a03135944e30ad241c8182dacc6049'/>
<id>29e9f5e711a03135944e30ad241c8182dacc6049</id>
<content type='text'>
The memcpy calls introduced in the memalign patches are ugly. This patch
hides them behind a set of macros.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The memcpy calls introduced in the memalign patches are ugly. This patch
hides them behind a set of macros.
</pre>
</div>
</content>
</entry>
<entry>
<title>Supress warnings with -O2</title>
<updated>2010-02-18T18:48:44+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2010-02-12T13:15:27+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=2c5bf74c71443f1680fef4fc0daa4a4c9dd10ad8'/>
<id>2c5bf74c71443f1680fef4fc0daa4a4c9dd10ad8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make change password errors more transparent</title>
<updated>2010-02-12T13:44:11+00:00</updated>
<author>
<name>Sumit Bose</name>
<email>sbose@redhat.com</email>
</author>
<published>2010-02-11T12:15:52+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=fbcab705c90135080e09544616f1526c0e7ef90c'/>
<id>fbcab705c90135080e09544616f1526c0e7ef90c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added option to use libcrypto instead of NSS.</title>
<updated>2010-02-05T14:43:42+00:00</updated>
<author>
<name>George McCollister</name>
<email>georgem@novatech-llc.com</email>
</author>
<published>2010-02-04T17:07:34+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=63be61852bd7ad1f74569843fb90629d63adb591'/>
<id>63be61852bd7ad1f74569843fb90629d63adb591</id>
<content type='text'>
crypto_sha512crypt.c is a clone of nss_sha512crypt.c with the exception that
all usage of NSS and related libraries has been switched to libcrypto.
I renamed nss_sha512crypt.h to sha512crypt.h since it is common to both
crypto_sha512crypt.c and nss_sha512crypt.c. Note that the random number
generator is not seeded manually and thus relies on seeding done
automatically by libcrypto. On some systems without /dev/urandom
seeding may not be performed.
See http://www.openssl.org/docs/crypto/RAND_add.html.
Signed-off-by: George McCollister &lt;georgem@novatech-llc.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
crypto_sha512crypt.c is a clone of nss_sha512crypt.c with the exception that
all usage of NSS and related libraries has been switched to libcrypto.
I renamed nss_sha512crypt.h to sha512crypt.h since it is common to both
crypto_sha512crypt.c and nss_sha512crypt.c. Note that the random number
generator is not seeded manually and thus relies on seeding done
automatically by libcrypto. On some systems without /dev/urandom
seeding may not be performed.
See http://www.openssl.org/docs/crypto/RAND_add.html.
Signed-off-by: George McCollister &lt;georgem@novatech-llc.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Internationalize the command-line help message</title>
<updated>2010-02-05T14:43:42+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-02-02T19:12:15+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=d61d37ed5c7cc51f1106fe3105c3cf226cc10277'/>
<id>d61d37ed5c7cc51f1106fe3105c3cf226cc10277</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable debug_timestamps by default</title>
<updated>2010-02-05T14:43:42+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-02-02T14:47:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=a9402e5d8e75f7f361a5754e91180ed4f4ee98e1'/>
<id>a9402e5d8e75f7f361a5754e91180ed4f4ee98e1</id>
<content type='text'>
It can be overridden in the sssd.conf or on the commandline with
--debug-timestamps=0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It can be overridden in the sssd.conf or on the commandline with
--debug-timestamps=0
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not overwrite valid TGTs when offline</title>
<updated>2009-12-18T14:46:25+00:00</updated>
<author>
<name>Sumit Bose</name>
<email>sbose@redhat.com</email>
</author>
<published>2009-12-17T12:18:05+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=f4284f4791e5f84193d70d82eaa7465a26813731'/>
<id>f4284f4791e5f84193d70d82eaa7465a26813731</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix warning in server.c</title>
<updated>2009-12-15T20:37:30+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2009-12-15T19:23:05+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/sbose/public_git/sssd.git/commit/?id=9181325508c01abdb180a58fe16147925e33487a'/>
<id>9181325508c01abdb180a58fe16147925e33487a</id>
<content type='text'>
Function definition was missing "void" to denote that it took no
arguments.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Function definition was missing "void" to denote that it took no
arguments.
</pre>
</div>
</content>
</entry>
</feed>
