<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/source4/param/share.h, branch talloc-2.3.3</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>smb.conf: Remove "share backend" option</title>
<updated>2021-03-26T03:04:39+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2021-03-24T22:50:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=7415f712dbed5e409d1557e281b5001764abbf0e'/>
<id>7415f712dbed5e409d1557e281b5001764abbf0e</id>
<content type='text'>
This is a confusing hold-over from the NTVFS fileserver that never became part of
the merged architecture.

Signed-off-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
Reviewed-by: Jeremy Allison &lt;jra@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a confusing hold-over from the NTVFS fileserver that never became part of
the merged architecture.

Signed-off-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
Reviewed-by: Jeremy Allison &lt;jra@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/param: Remove lpcfg_volume_label() and only caller in NTVFS file server</title>
<updated>2021-03-10T06:58:39+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2021-03-10T02:59:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=5cdc065211ef26f0c262751f17c3511a2dcca950'/>
<id>5cdc065211ef26f0c262751f17c3511a2dcca950</id>
<content type='text'>
Signed-off-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
Reviewed-by: Volker Lendecke &lt;vl@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
Reviewed-by: Volker Lendecke &lt;vl@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>s4: pass down a memory context when performing share_string_option, to allow substitutions</title>
<updated>2014-02-19T21:11:00+00:00</updated>
<author>
<name>Garming Sam</name>
<email>garming@catalyst.net.nz</email>
</author>
<published>2014-01-16T21:16:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=bce62e600085270f26053882c5a4e35f5fe4fb5e'/>
<id>bce62e600085270f26053882c5a4e35f5fe4fb5e</id>
<content type='text'>
Signed-off-by: Garming Sam &lt;garming@catalyst.net.nz&gt;
Change-Id: I24b36db3ac11834c3268b2da929e214c10268b16
Reviewed-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
Reviewed-by: Nadezhda Ivanova &lt;nivanova@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Garming Sam &lt;garming@catalyst.net.nz&gt;
Change-Id: I24b36db3ac11834c3268b2da929e214c10268b16
Reviewed-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
Reviewed-by: Nadezhda Ivanova &lt;nivanova@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>param/share: Use static prototypes.</title>
<updated>2010-06-13T17:26:48+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2010-06-13T17:21:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=f52a0d31f08aff9eb8e8890730ec76dfdee7016a'/>
<id>f52a0d31f08aff9eb8e8890730ec76dfdee7016a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>s4:lib/tevent: rename structs</title>
<updated>2008-12-29T19:46:40+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2008-12-29T19:24:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=183c379fe58ca60f5ef2d1f2033d035d4117ac8f'/>
<id>183c379fe58ca60f5ef2d1f2033d035d4117ac8f</id>
<content type='text'>
list=""
list="$list event_context:tevent_context"
list="$list fd_event:tevent_fd"
list="$list timed_event:tevent_timer"

for s in $list; do
	o=`echo $s | cut -d ':' -f1`
	n=`echo $s | cut -d ':' -f2`
	r=`git grep "struct $o" |cut -d ':' -f1 |sort -u`
	files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4`
	for f in $files; do
		cat $f | sed -e "s/struct $o/struct $n/g" &gt; $f.tmp
		mv $f.tmp $f
	done
done

metze
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
list=""
list="$list event_context:tevent_context"
list="$list fd_event:tevent_fd"
list="$list timed_event:tevent_timer"

for s in $list; do
	o=`echo $s | cut -d ':' -f1`
	n=`echo $s | cut -d ':' -f2`
	r=`git grep "struct $o" |cut -d ':' -f1 |sort -u`
	files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4`
	for f in $files; do
		cat $f | sed -e "s/struct $o/struct $n/g" &gt; $f.tmp
		mv $f.tmp $f
	done
done

metze
</pre>
</div>
</content>
</entry>
<entry>
<title>Specify event_context to ldb_wrap_connect explicitly.</title>
<updated>2008-04-17T10:23:44+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2008-04-17T10:23:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=21fc7673780aa1d7c0caab7b17ff9171238913ba'/>
<id>21fc7673780aa1d7c0caab7b17ff9171238913ba</id>
<content type='text'>
(This used to be commit b4e1ae07a284c044704322446c94351c2decff91)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(This used to be commit b4e1ae07a284c044704322446c94351c2decff91)
</pre>
</div>
</content>
</entry>
<entry>
<title>Make oplocks a per-share option.</title>
<updated>2008-03-27T09:32:02+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2008-03-27T09:32:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=4fc27c9969960dfef73ad80438d274e0f45e119e'/>
<id>4fc27c9969960dfef73ad80438d274e0f45e119e</id>
<content type='text'>
This even goes via the share options system (a very odd layer of indirection).

Andrew Bartlett
(This used to be commit f2c65f9907760b8852b70c53637388f08751ba88)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This even goes via the share options system (a very odd layer of indirection).

Andrew Bartlett
(This used to be commit f2c65f9907760b8852b70c53637388f08751ba88)
</pre>
</div>
</content>
</entry>
<entry>
<title>r26440: Remove more uses of global_loadparm.</title>
<updated>2007-12-21T04:50:08+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2007-12-13T21:46:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=e31abef15f7696cf39e9e81307f153da93568e02'/>
<id>e31abef15f7696cf39e9e81307f153da93568e02</id>
<content type='text'>
(This used to be commit 8858cf39722f192865e531164c72039fd18d7a8d)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(This used to be commit 8858cf39722f192865e531164c72039fd18d7a8d)
</pre>
</div>
</content>
</entry>
<entry>
<title>r26236: Remove more uses of global_loadparm or specify loadparm_context explicitly.</title>
<updated>2007-12-21T04:47:15+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2007-12-02T21:32:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=6c999cd12344f2bb8b1d2941210b4c205b3e0aad'/>
<id>6c999cd12344f2bb8b1d2941210b4c205b3e0aad</id>
<content type='text'>
(This used to be commit 5b29ef7c03d9ae76b0ca909e9f03a58e1bad3521)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(This used to be commit 5b29ef7c03d9ae76b0ca909e9f03a58e1bad3521)
</pre>
</div>
</content>
</entry>
<entry>
<title>r25547: Convert to standard bool type.</title>
<updated>2007-10-10T20:07:52+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2007-10-06T21:39:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=d5a93dfcb950ecd52d8dea7a2a5d667feb6259ca'/>
<id>d5a93dfcb950ecd52d8dea7a2a5d667feb6259ca</id>
<content type='text'>
(This used to be commit 97a241692c4b8dc45e086aa9b959f2cd30b8d6c9)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(This used to be commit 97a241692c4b8dc45e086aa9b959f2cd30b8d6c9)
</pre>
</div>
</content>
</entry>
</feed>
