<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/source4/rpc_server/echo, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/'/>
<entry>
<title>s4:misc: remove last usage of legacy event_ fn names</title>
<updated>2011-08-13T22:38:13+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>ssorce@redhat.com</email>
</author>
<published>2010-05-25T19:29:14+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/commit/?id=c84caabf8c5061af75d9e046813c1e2e8eff3722'/>
<id>c84caabf8c5061af75d9e046813c1e2e8eff3722</id>
<content type='text'>
Autobuild-User: Simo Sorce &lt;idra@samba.org&gt;
Autobuild-Date: Sun Aug 14 00:38:13 CEST 2011 on sn-devel-104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Autobuild-User: Simo Sorce &lt;idra@samba.org&gt;
Autobuild-Date: Sun Aug 14 00:38:13 CEST 2011 on sn-devel-104
</pre>
</div>
</content>
</entry>
<entry>
<title>s4:rpc_server/echo: fix compiler warning</title>
<updated>2010-10-03T09:41:51+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2010-10-02T00:13:36+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/commit/?id=d05ae9451aacd36d9c7ce7c313f95137aa5e8941'/>
<id>d05ae9451aacd36d9c7ce7c313f95137aa5e8941</id>
<content type='text'>
metze

Autobuild-User: Stefan Metzmacher &lt;metze@samba.org&gt;
Autobuild-Date: Sun Oct  3 09:41:51 UTC 2010 on sn-devel-104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
metze

Autobuild-User: Stefan Metzmacher &lt;metze@samba.org&gt;
Autobuild-Date: Sun Oct  3 09:41:51 UTC 2010 on sn-devel-104
</pre>
</div>
</content>
</entry>
<entry>
<title>s4:echo RPC - make this one "signed-safe"</title>
<updated>2010-03-02T16:46:02+00:00</updated>
<author>
<name>Matthias Dieter Wallnöfer</name>
<email>mwallnoefer@yahoo.de</email>
</author>
<published>2009-11-21T17:58:26+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/commit/?id=5c73ecd2b3b178dd57d7251342e966ea4f8044e0'/>
<id>5c73ecd2b3b178dd57d7251342e966ea4f8044e0</id>
<content type='text'>
"i" needs to be unsigned here since it counts until "r-&gt;in.len" which itself is
unsigned and not signed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"i" needs to be unsigned here since it counts until "r-&gt;in.len" which itself is
unsigned and not signed.
</pre>
</div>
</content>
</entry>
<entry>
<title>s4:rpc_server/echo: s/private/private_data</title>
<updated>2009-02-02T12:08:35+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2009-02-02T07:38:07+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/commit/?id=0854950b34dedbbd03120fa359403e3451161a38'/>
<id>0854950b34dedbbd03120fa359403e3451161a38</id>
<content type='text'>
metze
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
metze
</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://fedorapeople.org/cgit/pviktori/public_git/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>r23792: convert Samba4 to GPLv3</title>
<updated>2007-10-10T19:59:12+00:00</updated>
<author>
<name>Andrew Tridgell</name>
<email>tridge@samba.org</email>
</author>
<published>2007-07-10T02:07:03+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/commit/?id=0479a2f1cbae51fcd8dbdc3c148c808421fb4d25'/>
<id>0479a2f1cbae51fcd8dbdc3c148c808421fb4d25</id>
<content type='text'>
There are still a few tidyups of old FSF addresses to come (in both s3
and s4). More commits soon.
(This used to be commit fcf38a38ac691abd0fa51b89dc951a08e89fdafa)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There are still a few tidyups of old FSF addresses to come (in both s3
and s4). More commits soon.
(This used to be commit fcf38a38ac691abd0fa51b89dc951a08e89fdafa)
</pre>
</div>
</content>
</entry>
<entry>
<title>r21744: Test more talloc failure cases.</title>
<updated>2007-10-10T19:49:22+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2007-03-07T11:15:44+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/commit/?id=85a11bc1bbf41d17d38343e9c2707604287b6f58'/>
<id>85a11bc1bbf41d17d38343e9c2707604287b6f58</id>
<content type='text'>
Andrew Bartlett
(This used to be commit ddf7354986a800455b6f55c2fdbeb8bb39381716)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Andrew Bartlett
(This used to be commit ddf7354986a800455b6f55c2fdbeb8bb39381716)
</pre>
</div>
</content>
</entry>
<entry>
<title>r21698: Check for talloc failures.</title>
<updated>2007-10-10T19:49:14+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2007-03-05T10:28:24+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/commit/?id=c069ead0bb543b397542a94fbf4ca836653e2159'/>
<id>c069ead0bb543b397542a94fbf4ca836653e2159</id>
<content type='text'>
Andrew Bartlett
(This used to be commit c9eb5bf19a702af32a4e4f109a27e4076303efdc)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Andrew Bartlett
(This used to be commit c9eb5bf19a702af32a4e4f109a27e4076303efdc)
</pre>
</div>
</content>
</entry>
<entry>
<title>r20850: Prefix all server calls with dcesrv_</title>
<updated>2007-10-10T19:43:39+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2007-01-17T14:49:36+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/commit/?id=64e88a8ccf2faa34ee9d182f4e89fa6e44c609a6'/>
<id>64e88a8ccf2faa34ee9d182f4e89fa6e44c609a6</id>
<content type='text'>
(This used to be commit 76c78b0339cd88c61a13745f7f4e037f400db21b)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(This used to be commit 76c78b0339cd88c61a13745f7f4e037f400db21b)
</pre>
</div>
</content>
</entry>
<entry>
<title>r19339: Merge my 4.0-unittest branch. This adds an API for more fine-grained</title>
<updated>2007-10-10T19:21:12+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2006-10-16T13:06:41+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/pviktori/public_git/samba.git/commit/?id=8773e743c518578584d07d35ffdafdd598af88b0'/>
<id>8773e743c518578584d07d35ffdafdd598af88b0</id>
<content type='text'>
output in the testsuite rather than just True or False for a
set of tests.

The aim is to use this for:
 * known failure lists (run all tests and detect tests that
						started working or started failing). This
   would allow us to get rid of the RPC-SAMBA3-* tests
 * nicer torture output
 * simplification of the testsuite system
 * compatibility with other unit testing systems
 * easier usage of smbtorture (being able to run one test
						and automatically set up the environment for that)

This is still a work-in-progress; expect more updates over the next couple of
days.
(This used to be commit 0eb6097305776325c75081356309115f445a7218)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
output in the testsuite rather than just True or False for a
set of tests.

The aim is to use this for:
 * known failure lists (run all tests and detect tests that
						started working or started failing). This
   would allow us to get rid of the RPC-SAMBA3-* tests
 * nicer torture output
 * simplification of the testsuite system
 * compatibility with other unit testing systems
 * easier usage of smbtorture (being able to run one test
						and automatically set up the environment for that)

This is still a work-in-progress; expect more updates over the next couple of
days.
(This used to be commit 0eb6097305776325c75081356309115f445a7218)
</pre>
</div>
</content>
</entry>
</feed>
