<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/lib/util, branch talloc-2.0.7</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/'/>
<entry>
<title>tdb_compat: adapt to tdb2 API change.</title>
<updated>2011-09-13T21:43:13+00:00</updated>
<author>
<name>Rusty Russell</name>
<email>rusty@rustcorp.com.au</email>
</author>
<published>2011-09-13T21:43:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=376511ed4defeeeabcfaa83acd230afd4a46b6fd'/>
<id>376511ed4defeeeabcfaa83acd230afd4a46b6fd</id>
<content type='text'>
Add the ecode arg to all the log functions, and log it.

Signed-off-by: Rusty Russell &lt;rusty@rustcorp.com.au&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add the ecode arg to all the log functions, and log it.

Signed-off-by: Rusty Russell &lt;rusty@rustcorp.com.au&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>lib/util/charset: the comparsion must be against our charset modules</title>
<updated>2011-09-10T13:45:42+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2011-09-10T05:51:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=86b1f45a5e763893a038bf854dfe735c86f3f30b'/>
<id>86b1f45a5e763893a038bf854dfe735c86f3f30b</id>
<content type='text'>
There is little point testing this against the system iconv.

Andrew Bartlett

Autobuild-User: Andrew Bartlett &lt;abartlet@samba.org&gt;
Autobuild-Date: Sat Sep 10 15:45:42 CEST 2011 on sn-devel-104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There is little point testing this against the system iconv.

Andrew Bartlett

Autobuild-User: Andrew Bartlett &lt;abartlet@samba.org&gt;
Autobuild-Date: Sat Sep 10 15:45:42 CEST 2011 on sn-devel-104
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/util/charset Use name of ISO-8859-1 that matches our internal implementation</title>
<updated>2011-09-10T12:18:06+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2011-09-10T05:41:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=142f871cef8f1b239d01d65dfeba3331cff0e166'/>
<id>142f871cef8f1b239d01d65dfeba3331cff0e166</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/util/charset: Improve toture assertions in iconv test</title>
<updated>2011-09-10T12:18:06+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2011-09-10T03:23:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=0022296349ef95896b0e83a5ac496edba043a98c'/>
<id>0022296349ef95896b0e83a5ac496edba043a98c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/util/charset Run charset sets with and without the system iconv</title>
<updated>2011-09-10T12:18:06+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2011-09-09T23:53:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=2085dffddb36e8ac3cfe83c3f318d49c96408274'/>
<id>2085dffddb36e8ac3cfe83c3f318d49c96408274</id>
<content type='text'>
We need to know that we can load the samba-provided modules, and that
they are correct.  However, we must mark a number of tests as
knownfail due to errors in our internal iconv modules.

Andrew Bartlett
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need to know that we can load the samba-provided modules, and that
they are correct.  However, we must mark a number of tests as
knownfail due to errors in our internal iconv modules.

Andrew Bartlett
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/util/charset: add back loading of charset modules</title>
<updated>2011-09-10T12:18:06+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2011-09-09T13:51:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=fc6bb5d47a985d0215c2a8ea9a00c21abf131ad9'/>
<id>fc6bb5d47a985d0215c2a8ea9a00c21abf131ad9</id>
<content type='text'>
For autoconf builds these remain as modules, for waf builds they are
built into the charset library.

This is required to provide the CP850 charset when iconv is not available.

The charset modules static for the waf builds because with proper
shared libs, there isn't the same need for these to be in seperate .so
files.  The modules are also not produced if a system iconv is found,
except for developers, to allow testing of both code paths.

Andrew Bartlett
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For autoconf builds these remain as modules, for waf builds they are
built into the charset library.

This is required to provide the CP850 charset when iconv is not available.

The charset modules static for the waf builds because with proper
shared libs, there isn't the same need for these to be in seperate .so
files.  The modules are also not produced if a system iconv is found,
except for developers, to allow testing of both code paths.

Andrew Bartlett
</pre>
</div>
</content>
</entry>
<entry>
<title>lib: added base64_decode_data_blob_talloc()</title>
<updated>2011-09-08T01:35:27+00:00</updated>
<author>
<name>Andrew Tridgell</name>
<email>tridge@samba.org</email>
</author>
<published>2011-09-07T05:28:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=6e25723c82eced9eff8c06bd645b754008824370'/>
<id>6e25723c82eced9eff8c06bd645b754008824370</id>
<content type='text'>
its nice to be able to allocate on other than NULL

Pair-Programmed-With: Andrew Bartlett &lt;abartlet@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
its nice to be able to allocate on other than NULL

Pair-Programmed-With: Andrew Bartlett &lt;abartlet@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug 8433, segfault in iconv.c</title>
<updated>2011-09-01T16:25:34+00:00</updated>
<author>
<name>Volker Lendecke</name>
<email>vl@samba.org</email>
</author>
<published>2011-09-01T14:55:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=1d4de78f567e908e0acc218630fceb0884b07d65'/>
<id>1d4de78f567e908e0acc218630fceb0884b07d65</id>
<content type='text'>
Autobuild-User: Volker Lendecke &lt;vlendec@samba.org&gt;
Autobuild-Date: Thu Sep  1 18:25:34 CEST 2011 on sn-devel-104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Autobuild-User: Volker Lendecke &lt;vlendec@samba.org&gt;
Autobuild-Date: Thu Sep  1 18:25:34 CEST 2011 on sn-devel-104
</pre>
</div>
</content>
</entry>
<entry>
<title>wafsamba: Require public libraries to have a pc file specified, or explicitly specified that they don't need one.</title>
<updated>2011-08-21T01:22:05+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2011-08-21T00:09:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=12e1fdf0899c8f9176f4a7e789faa2758c4eaa70'/>
<id>12e1fdf0899c8f9176f4a7e789faa2758c4eaa70</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>util: add function to extend anonymous shared memory</title>
<updated>2011-08-15T00:19:02+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>idra@samba.org</email>
</author>
<published>2011-08-14T22:10:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=039ddef20900322760093a04881007dbb0897b50'/>
<id>039ddef20900322760093a04881007dbb0897b50</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
