<feed xmlns='http://www.w3.org/2005/Atom'>
<title>libssh.git/tests, branch wip/expose_buffer_methods_wo_cwrap</title>
<subtitle>libssh shared repository</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/'/>
<entry>
<title>buffer: do not use ssh_buffer_get_rest_len()</title>
<updated>2016-01-19T10:31:08+00:00</updated>
<author>
<name>Fabiano Fidêncio</name>
<email>fidencio@redhat.com</email>
</author>
<published>2015-09-24T22:34:42+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=805a602870c2273b0d213dd1d0ed96e50581ff83'/>
<id>805a602870c2273b0d213dd1d0ed96e50581ff83</id>
<content type='text'>
As ssh_buffer_get_len() actually calls ssh_buffer_get_rest_len(), let's
just use the first one. This is a preparatory step for removing
ssh_buffer_get_rest_len().

Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As ssh_buffer_get_len() actually calls ssh_buffer_get_rest_len(), let's
just use the first one. This is a preparatory step for removing
ssh_buffer_get_rest_len().

Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>buffer: rename ssh_buffer_get_rest() to ssh_buffer_get()</title>
<updated>2016-01-19T10:31:07+00:00</updated>
<author>
<name>Fabiano Fidêncio</name>
<email>fidencio@redhat.com</email>
</author>
<published>2015-09-24T23:10:03+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=29727d40e155a1fb52cf003d016da03095f15c9d'/>
<id>29727d40e155a1fb52cf003d016da03095f15c9d</id>
<content type='text'>
Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Fix warning about expected format for printf</title>
<updated>2016-01-19T10:31:07+00:00</updated>
<author>
<name>Fabiano Fidêncio</name>
<email>fidencio@redhat.com</email>
</author>
<published>2015-09-17T12:30:41+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=f5adedc372e94f57c38e8a99025b5d2c77e0e195'/>
<id>f5adedc372e94f57c38e8a99025b5d2c77e0e195</id>
<content type='text'>
/home/ffidenci/src/upstream/libssh/tests/benchmarks/bench_scp.c: In
function ‘benchmarks_scp_down’:
/home/ffidenci/src/upstream/libssh/tests/benchmarks/bench_scp.c:112:14:
warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has
type ‘size_t {aka long unsigned int}’ [-Wformat=]
       printf("Only %d bytes available (on %lu requested).\n",size,bytes);
              ^
/home/ffidenci/src/upstream/libssh/tests/benchmarks/bench_scp.c:116:14:
warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has
type ‘size_t {aka long unsigned int}’ [-Wformat=]
        printf("File is %d bytes (on %lu requested). Will cut the end\n"
        ,size,bytes);

Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
/home/ffidenci/src/upstream/libssh/tests/benchmarks/bench_scp.c: In
function ‘benchmarks_scp_down’:
/home/ffidenci/src/upstream/libssh/tests/benchmarks/bench_scp.c:112:14:
warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has
type ‘size_t {aka long unsigned int}’ [-Wformat=]
       printf("Only %d bytes available (on %lu requested).\n",size,bytes);
              ^
/home/ffidenci/src/upstream/libssh/tests/benchmarks/bench_scp.c:116:14:
warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has
type ‘size_t {aka long unsigned int}’ [-Wformat=]
        printf("File is %d bytes (on %lu requested). Will cut the end\n"
        ,size,bytes);

Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cleanup: use ssh_ prefix in the buffer (non-static) functions</title>
<updated>2016-01-19T10:31:07+00:00</updated>
<author>
<name>Fabiano Fidêncio</name>
<email>fidencio@redhat.com</email>
</author>
<published>2015-09-17T07:43:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=eb9b334b14b08c713de63cb5079bc0432e8e62b3'/>
<id>eb9b334b14b08c713de63cb5079bc0432e8e62b3</id>
<content type='text'>
Having "ssh_" prefix in the functions' name will avoid possible clashes
when compiling libssh statically.

Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Having "ssh_" prefix in the functions' name will avoid possible clashes
when compiling libssh statically.

Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cleanup: use ssh_ prefix in the agent (non-static) functions</title>
<updated>2016-01-19T10:31:07+00:00</updated>
<author>
<name>Fabiano Fidêncio</name>
<email>fidencio@redhat.com</email>
</author>
<published>2015-09-16T20:13:09+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=973813e4535131dd47d12d6c53c4eef4fb0089ab'/>
<id>973813e4535131dd47d12d6c53c4eef4fb0089ab</id>
<content type='text'>
Having "ssh_" prefix in the functions' name will avoid possible clashes
when compiling libssh statically.

Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Having "ssh_" prefix in the functions' name will avoid possible clashes
when compiling libssh statically.

Signed-off-by: Fabiano Fidêncio &lt;fidencio@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Initialize output and iv in torture_crypto</title>
<updated>2016-01-19T10:15:42+00:00</updated>
<author>
<name>Andreas Schneider</name>
<email>asn@cryptomilk.org</email>
</author>
<published>2016-01-19T10:15:42+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=9ccb6864be25356108d2782871ea07f5be038a9b'/>
<id>9ccb6864be25356108d2782871ea07f5be038a9b</id>
<content type='text'>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>valgrind: Add suppression for glibc dlopen issue</title>
<updated>2016-01-19T10:03:52+00:00</updated>
<author>
<name>Andreas Schneider</name>
<email>asn@cryptomilk.org</email>
</author>
<published>2016-01-19T10:03:52+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=b1c0121507ff666c0a3c636e4c0c4a637c5acdf5'/>
<id>b1c0121507ff666c0a3c636e4c0c4a637c5acdf5</id>
<content type='text'>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>torture: Fix a memory leak</title>
<updated>2016-01-19T10:02:13+00:00</updated>
<author>
<name>Andreas Schneider</name>
<email>asn@cryptomilk.org</email>
</author>
<published>2016-01-19T10:02:13+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=f6bea8d061b963759b14c208b8142efe0f7a91c6'/>
<id>f6bea8d061b963759b14c208b8142efe0f7a91c6</id>
<content type='text'>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>torture: Add missing include for AF_INET</title>
<updated>2016-01-18T14:19:20+00:00</updated>
<author>
<name>Andreas Schneider</name>
<email>asn@cryptomilk.org</email>
</author>
<published>2016-01-18T14:19:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=9bb7e68b86409c0486340abc76dcefef72d74a60'/>
<id>9bb7e68b86409c0486340abc76dcefef72d74a60</id>
<content type='text'>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Require pam_wrapper 1.0.1</title>
<updated>2016-01-18T11:02:45+00:00</updated>
<author>
<name>Andreas Schneider</name>
<email>asn@cryptomilk.org</email>
</author>
<published>2016-01-18T11:02:45+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/libssh.git/commit/?id=20718ec52b8b0a020dd5017cac20d652d2fe6e1f'/>
<id>20718ec52b8b0a020dd5017cac20d652d2fe6e1f</id>
<content type='text'>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Andreas Schneider &lt;asn@cryptomilk.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
