<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libc, branch OPENBSD_7_7</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=OPENBSD_7_7</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=OPENBSD_7_7'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2025-01-09T23:18:08+00:00</updated>
<entry>
<title>When describing v3 crypt, be specific as to which machine was simulated.</title>
<updated>2025-01-09T23:18:08+00:00</updated>
<author>
<name>jsg</name>
<email></email>
</author>
<published>2025-01-09T23:18:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=36e3d6ad10576cbcc13ef1ca61ed1ab9374dc28a'/>
<id>urn:sha1:36e3d6ad10576cbcc13ef1ca61ed1ab9374dc28a</id>
<content type='text'>
feedback jmc@ ok deraadt@ schwarze@
</content>
</entry>
<entry>
<title>appeared in 4.3BSD before 4.3BSD-Tahoe</title>
<updated>2024-12-11T23:28:20+00:00</updated>
<author>
<name>jsg</name>
<email></email>
</author>
<published>2024-12-11T23:28:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=15fd603970df70550b12292adf704e8f034b7eb4'/>
<id>urn:sha1:15fd603970df70550b12292adf704e8f034b7eb4</id>
<content type='text'>
ok millert@ schwarze@
</content>
</entry>
<entry>
<title>remove unneeded semicolons; checked by millert@</title>
<updated>2024-09-20T02:00:46+00:00</updated>
<author>
<name>jsg</name>
<email></email>
</author>
<published>2024-09-20T02:00:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=bd425e27ad9c9e978ee7a877656733f4742e01cc'/>
<id>urn:sha1:bd425e27ad9c9e978ee7a877656733f4742e01cc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>typo in comment; Effectivly -&gt; Effectively; ok gilles@</title>
<updated>2024-09-03T18:21:55+00:00</updated>
<author>
<name>op</name>
<email></email>
</author>
<published>2024-09-03T18:21:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=35c0b093dbb74ae99c7aeef7270b936c658f9294'/>
<id>urn:sha1:35c0b093dbb74ae99c7aeef7270b936c658f9294</id>
<content type='text'>
</content>
</entry>
<entry>
<title>wild white space</title>
<updated>2024-09-03T17:05:59+00:00</updated>
<author>
<name>deraadt</name>
<email></email>
</author>
<published>2024-09-03T17:05:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=ca5f6662533313cdb402c3ce9aaad36b9f6f4a86'/>
<id>urn:sha1:ca5f6662533313cdb402c3ce9aaad36b9f6f4a86</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert commitid KcCtsA53F9UQzc0t:</title>
<updated>2024-08-30T03:44:48+00:00</updated>
<author>
<name>guenther</name>
<email></email>
</author>
<published>2024-08-30T03:44:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=5d4db5a71ba518c310aea0879dbc6d5838ebe088'/>
<id>urn:sha1:5d4db5a71ba518c310aea0879dbc6d5838ebe088</id>
<content type='text'>
"Make exit(), fclose(), fflush(), and freopen() comply with POSIX-2008
 requirements for setting the underlying file position when flushing
 read-mode streams, and make an fseek()-after-fflush() not change the
 underlying file position."

Something isn't correct about it and it breaks at least initdb from
the postgresql-server package.

discussed with tb@, semarie@, and deraadt@
</content>
</entry>
<entry>
<title>Use struct __sFILE instead of FILE in thread locking callback</title>
<updated>2024-08-18T02:25:51+00:00</updated>
<author>
<name>guenther</name>
<email></email>
</author>
<published>2024-08-18T02:25:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=01a2985a38a3c808144fed57b482f1147af4d183'/>
<id>urn:sha1:01a2985a38a3c808144fed57b482f1147af4d183</id>
<content type='text'>
declarations to reduce &lt;stdio.h&gt; pollution.  Declare __isthreaded
in thread_private.h where it's really needed.

ok deraadt@
</content>
</entry>
<entry>
<title>Make exit(), fclose(), fflush(), and freopen() comply with POSIX-2008</title>
<updated>2024-08-12T20:53:09+00:00</updated>
<author>
<name>guenther</name>
<email></email>
</author>
<published>2024-08-12T20:53:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=f7005808e10f9952d53be75e414a7944967d1cc0'/>
<id>urn:sha1:f7005808e10f9952d53be75e414a7944967d1cc0</id>
<content type='text'>
requirements for setting the underlying file position when flushing
read-mode streams, and make an fseek()-after-fflush() not change the
underlying file position.

Much testing, review, and assistance from tb@
ok tb@ millert@
</content>
</entry>
<entry>
<title>wcslcpy() and wcslcat() are in POSIX-2024.  Update #include visibility</title>
<updated>2024-08-07T04:59:45+00:00</updated>
<author>
<name>guenther</name>
<email></email>
</author>
<published>2024-08-07T04:59:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=8631652dedeb431622c6717e8a4f77d04eb99b70'/>
<id>urn:sha1:8631652dedeb431622c6717e8a4f77d04eb99b70</id>
<content type='text'>
and manpages and add restrict qualifiers.

ok millert@
</content>
</entry>
<entry>
<title>A dozen interfaces in &lt;endian.h&gt; were standardized in POSIX-2024 as expected</title>
<updated>2024-08-03T23:06:56+00:00</updated>
<author>
<name>guenther</name>
<email></email>
</author>
<published>2024-08-03T23:06:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=57946fcb6c73857d80cc35f6f670878d8f6438d9'/>
<id>urn:sha1:57946fcb6c73857d80cc35f6f670878d8f6438d9</id>
<content type='text'>
</content>
</entry>
</feed>
