<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libc, branch libressl-v3.1.4</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=libressl-v3.1.4</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=libressl-v3.1.4'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2020-04-26T16:36:14+00:00</updated>
<entry>
<title>Minimal maintenance to make this mess slightly less confusing:</title>
<updated>2020-04-26T16:36:14+00:00</updated>
<author>
<name>schwarze</name>
<email></email>
</author>
<published>2020-04-26T16:36:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=e46228d31b64bf4aabfbe1e7bafe0120ba40176c'/>
<id>urn:sha1:e46228d31b64bf4aabfbe1e7bafe0120ba40176c</id>
<content type='text'>
queue -&gt; list; mention "intrusive"; element -&gt; member at one place;
delete a bogus remark that maybe referred to a long-gone
implementation in VAX assembly code.
Much more could be improved, but i don't want to waste too much time here.
</content>
</entry>
<entry>
<title>fix the description; from andras farkas</title>
<updated>2020-04-26T13:59:56+00:00</updated>
<author>
<name>jmc</name>
<email></email>
</author>
<published>2020-04-26T13:59:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=0740c14f7f520b95c1d09ed6d9195493ec4f2119'/>
<id>urn:sha1:0740c14f7f520b95c1d09ed6d9195493ec4f2119</id>
<content type='text'>
ok schwarze

kill a Tn while here...
</content>
</entry>
<entry>
<title>A comma is not appropriate here, use a semicolon</title>
<updated>2020-04-25T21:06:17+00:00</updated>
<author>
<name>jca</name>
<email></email>
</author>
<published>2020-04-25T21:06:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=5ac285f9542fbaa83f719d92c31dc7540b6aa10b'/>
<id>urn:sha1:5ac285f9542fbaa83f719d92c31dc7540b6aa10b</id>
<content type='text'>
Suggested by Evan Silberman, confirmed by jmc@
</content>
</entry>
<entry>
<title>Discourage use of RES_USE_INET6</title>
<updated>2020-04-25T16:23:59+00:00</updated>
<author>
<name>jca</name>
<email></email>
</author>
<published>2020-04-25T16:23:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=a6b45674e18ab9626e7297f2b5433e1bc495a0e1'/>
<id>urn:sha1:a6b45674e18ab9626e7297f2b5433e1bc495a0e1</id>
<content type='text'>
Suggested by eric@, input from deraadt@, ok deraadt@ eric@
</content>
</entry>
<entry>
<title>Fix RES_USE_INET6 description</title>
<updated>2020-04-25T14:30:05+00:00</updated>
<author>
<name>jca</name>
<email></email>
</author>
<published>2020-04-25T14:30:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=93346054dd85553cc13072024267ff8ceb9dfd19'/>
<id>urn:sha1:93346054dd85553cc13072024267ff8ceb9dfd19</id>
<content type='text'>
The previous wording implied this option does nothing, which is wrong.
This option does affect the way gethostbyname(3) works on OpenBSD
(return IPv6 addresses if available).  On some systems, it also
introduces IPv4-mapped IPv6 addresses, a "feature" that we don't
support.

ok deraadt@ eric@
</content>
</entry>
<entry>
<title>Remove AUTHORS section. This follows what is done in strstr.3</title>
<updated>2020-04-16T12:40:41+00:00</updated>
<author>
<name>claudio</name>
<email></email>
</author>
<published>2020-04-16T12:40:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=1fa8673e72977d152acd0df1c460be4a3ae7c289'/>
<id>urn:sha1:1fa8673e72977d152acd0df1c460be4a3ae7c289</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace the simple memmem() implementation with a version that is O(n)</title>
<updated>2020-04-16T12:39:28+00:00</updated>
<author>
<name>claudio</name>
<email></email>
</author>
<published>2020-04-16T12:39:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=61e2100116cd13204d9523ed402e88424a1a65f2'/>
<id>urn:sha1:61e2100116cd13204d9523ed402e88424a1a65f2</id>
<content type='text'>
based on code from musl and now similar to our strstr().
OK tb@ millert@
</content>
</entry>
<entry>
<title>Resync our strstr.c with the musl version. Removes some debug code and</title>
<updated>2020-04-16T12:37:52+00:00</updated>
<author>
<name>claudio</name>
<email></email>
</author>
<published>2020-04-16T12:37:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=6511b4c8455708269796df54d20b44314c46a8e3'/>
<id>urn:sha1:6511b4c8455708269796df54d20b44314c46a8e3</id>
<content type='text'>
optimizes one statement in two-way string compare.
OK tb@ millert@
</content>
</entry>
<entry>
<title>"eventually" came and went back in 2004.</title>
<updated>2020-03-30T12:52:58+00:00</updated>
<author>
<name>martijn</name>
<email></email>
</author>
<published>2020-03-30T12:52:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=f9d22e5bfb4a68abbe135cdcad92967c8344714c'/>
<id>urn:sha1:f9d22e5bfb4a68abbe135cdcad92967c8344714c</id>
<content type='text'>
OK schwarze@
</content>
</entry>
<entry>
<title>correct Research Unix edition "appeared in" use in HISTORY</title>
<updated>2020-02-08T01:09:57+00:00</updated>
<author>
<name>jsg</name>
<email></email>
</author>
<published>2020-02-08T01:09:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d9caa3efeb30ce5d25bc81064b9ae0dcc664699e'/>
<id>urn:sha1:d9caa3efeb30ce5d25bc81064b9ae0dcc664699e</id>
<content type='text'>
Starting from "Combined Table of Contents" in Doug McIlroy's
"A Research UNIX Reader" a table of which edition manuals appeared in.
Checked against manuals from bitsavers/TUHS and source from TUHS where
available.

Ingo points out there are cases where something is included but not
documented until a later release.
bcd(6)		v6	v7
printf(3)	v2	v4
abort(3)	v5	v6
system(3)	v6	v7
fmod(3)		v5	v6

ok schwarze@
</content>
</entry>
</feed>
