<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/source3, branch v3-5-test</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>VERSION: Bump version number up to 3.5.21.</title>
<updated>2012-12-18T09:50:59+00:00</updated>
<author>
<name>Karolin Seeger</name>
<email>kseeger@samba.org</email>
</author>
<published>2012-12-18T09:50:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=f80704321ffe22ed3a5dfab02e0ebaa1cc104c22'/>
<id>f80704321ffe22ed3a5dfab02e0ebaa1cc104c22</id>
<content type='text'>
Karolin
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Karolin
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug #9455 munmap called for an address location not mapped by samba.</title>
<updated>2012-12-12T11:15:15+00:00</updated>
<author>
<name>Jeremy Allison</name>
<email>jra@samba.org</email>
</author>
<published>2012-12-10T18:40:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=06e3c65af559baaee7fa61ed3df1287b786d1858'/>
<id>06e3c65af559baaee7fa61ed3df1287b786d1858</id>
<content type='text'>
Signed-off-by: Jeremy Allison &lt;jra@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jeremy Allison &lt;jra@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>source3/libaddns: don't depend on the order in resp-&gt;answers[]</title>
<updated>2012-11-16T08:09:46+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2012-11-09T07:59:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=cf4773f929b2ac01bfe22e8113ccd3843c92bf56'/>
<id>cf4773f929b2ac01bfe22e8113ccd3843c92bf56</id>
<content type='text'>
Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;

Reviewed-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
(cherry picked from commit eecc1d294256210ee8c2f6ab79d21b835258a6d4)

The last 2 patches address bug #9402 - lib/addns doesn't work samba4 with a
bind9 server.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;

Reviewed-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
(cherry picked from commit eecc1d294256210ee8c2f6ab79d21b835258a6d4)

The last 2 patches address bug #9402 - lib/addns doesn't work samba4 with a
bind9 server.
</pre>
</div>
</content>
</entry>
<entry>
<title>source3/libaddns: remove pointless check for resp-&gt;num_additionals != 1</title>
<updated>2012-11-16T08:09:38+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2012-11-09T07:55:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=4bb99f454cea8a0c37422f1e64cabe96543ca6e8'/>
<id>4bb99f454cea8a0c37422f1e64cabe96543ca6e8</id>
<content type='text'>
We never use resp-&gt;additionals, so there's no reason to check.

This fixes dns updates against BIND9 (used in a Samba4 domain).

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;

Reviewed-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
(cherry picked from commit b59c5db5f74f56c0536635a41ae51c389109ceb5)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We never use resp-&gt;additionals, so there's no reason to check.

This fixes dns updates against BIND9 (used in a Samba4 domain).

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;

Reviewed-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
(cherry picked from commit b59c5db5f74f56c0536635a41ae51c389109ceb5)
</pre>
</div>
</content>
</entry>
<entry>
<title>Another fix needed for bug #9236 - ACL masks incorrectly applied when setting ACLs.</title>
<updated>2012-11-15T08:07:09+00:00</updated>
<author>
<name>Jeremy Allison</name>
<email>jra@samba.org</email>
</author>
<published>2012-11-08T21:45:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=92292ac55144521824610a5d4b09f8dc1ff19a8a'/>
<id>92292ac55144521824610a5d4b09f8dc1ff19a8a</id>
<content type='text'>
Not caught by make test as it's an extreme edge case for strange
incoming ACLs. I only found this as I'm making raw.acls and smb2.acls
pass against 3.6.x with acl_xattr mapped onto a POSIX backend (which
isn't tested in make test).

An incoming inheritable ACE entry containing only one permission,
WRITE_DATA maps into a POSIX owner perm of "-w-", which violates
the principle that the owner of a file/directory can always read.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Not caught by make test as it's an extreme edge case for strange
incoming ACLs. I only found this as I'm making raw.acls and smb2.acls
pass against 3.6.x with acl_xattr mapped onto a POSIX backend (which
isn't tested in make test).

An incoming inheritable ACE entry containing only one permission,
WRITE_DATA maps into a POSIX owner perm of "-w-", which violates
the principle that the owner of a file/directory can always read.
</pre>
</div>
</content>
</entry>
<entry>
<title>Second part of fix for bug #7781 - Samba transforms ShareName to lowercase (sharename) when adding new share via MMC</title>
<updated>2012-11-05T10:10:14+00:00</updated>
<author>
<name>Jeremy Allison</name>
<email>jra@samba.org</email>
</author>
<published>2012-11-01T18:56:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=e81b3c9a2aa58cbf5e12ef129fa63aab784c9598'/>
<id>e81b3c9a2aa58cbf5e12ef129fa63aab784c9598</id>
<content type='text'>
Ensure safe_strcpy is safe when src == dest. This probably needs porting
to master/3.6.x/4.0.x.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ensure safe_strcpy is safe when src == dest. This probably needs porting
to master/3.6.x/4.0.x.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug #7781 (Samba transforms "ShareName" to lowercase when adding new share via MMC)</title>
<updated>2012-11-05T10:10:14+00:00</updated>
<author>
<name>Jeremy Allison</name>
<email>jra@samba.org</email>
</author>
<published>2012-05-23T20:22:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=3b1528dcd67d62f20313094be9b5d609a1ca4f25'/>
<id>3b1528dcd67d62f20313094be9b5d609a1ca4f25</id>
<content type='text'>
Signed-off-by: Michael Adam &lt;obnox@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Michael Adam &lt;obnox@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>VERSION: Bump version number up to 3.5.20.</title>
<updated>2012-11-05T08:44:10+00:00</updated>
<author>
<name>Karolin Seeger</name>
<email>kseeger@samba.org</email>
</author>
<published>2012-11-05T08:44:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=6048e80e1f3ca0d603d5e7458c91f9e5c43f8b67'/>
<id>6048e80e1f3ca0d603d5e7458c91f9e5c43f8b67</id>
<content type='text'>
Karolin
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Karolin
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Fix bug #7781 (Samba transforms "ShareName" to lowercase when adding new share via MMC)"</title>
<updated>2012-10-31T10:40:26+00:00</updated>
<author>
<name>Karolin Seeger</name>
<email>kseeger@samba.org</email>
</author>
<published>2012-10-31T10:40:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=92bd768ed56585c2a45d0ca41eec9e6a1e3701ae'/>
<id>92bd768ed56585c2a45d0ca41eec9e6a1e3701ae</id>
<content type='text'>
This reverts commit 157b88da4db727eafa682c7fc7eab11d5955f57b.

This one seems to break make test on my system.

Karolin
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 157b88da4db727eafa682c7fc7eab11d5955f57b.

This one seems to break make test on my system.

Karolin
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Revert "s3-smbd: Don't segfault if user specified ports out for range.""</title>
<updated>2012-10-31T10:39:34+00:00</updated>
<author>
<name>Karolin Seeger</name>
<email>kseeger@samba.org</email>
</author>
<published>2012-10-31T10:39:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=79564b889dba69fa39d9839e5d45457657ab0950'/>
<id>79564b889dba69fa39d9839e5d45457657ab0950</id>
<content type='text'>
This reverts commit fce3a18d3d5ed46f8e0d1653f862e46b5dff0e03.

This patch does not seem to cause the issue. Sorry for the noise.

Karolin
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit fce3a18d3d5ed46f8e0d1653f862e46b5dff0e03.

This patch does not seem to cause the issue. Sorry for the noise.

Karolin
</pre>
</div>
</content>
</entry>
</feed>
