<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libc/net/getnetnamadr.c, branch OPENBSD_3_4_BASE</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=OPENBSD_3_4_BASE</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=OPENBSD_3_4_BASE'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2003-06-03T21:09:00+00:00</updated>
<entry>
<title>terms 3 &amp; 4 cleanup based on "terms" file</title>
<updated>2003-06-03T21:09:00+00:00</updated>
<author>
<name>deraadt</name>
<email></email>
</author>
<published>2003-06-03T21:09:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=58bb0cba027bb466c32af726c19a24ebab4ddf2d'/>
<id>urn:sha1:58bb0cba027bb466c32af726c19a24ebab4ddf2d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove the advertising clause in the UCB license which Berkeley</title>
<updated>2003-06-02T20:18:38+00:00</updated>
<author>
<name>millert</name>
<email></email>
</author>
<published>2003-06-02T20:18:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=021d32a253720a2fcdb07690f59c7e08d1d661e6'/>
<id>urn:sha1:021d32a253720a2fcdb07690f59c7e08d1d661e6</id>
<content type='text'>
rescinded 22 July 1999.  Proofed by myself and Theo.
</content>
</entry>
<entry>
<title>strcpy/strcat -&gt; strlcpy/strlcat</title>
<updated>2003-04-05T00:43:19+00:00</updated>
<author>
<name>tdeval</name>
<email></email>
</author>
<published>2003-04-05T00:43:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=1517aefe91cb165ee33bd66d552751a5726b06b1'/>
<id>urn:sha1:1517aefe91cb165ee33bd66d552751a5726b06b1</id>
<content type='text'>
ok tedu@, hints by deraadt@ and millert@
</content>
</entry>
<entry>
<title>thread safer libc (note: safer, not safe)</title>
<updated>2003-01-28T04:58:00+00:00</updated>
<author>
<name>marc</name>
<email></email>
</author>
<published>2003-01-28T04:58:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=547ebab319b228b064cf5dcb3ff0ae1bf23d24a2'/>
<id>urn:sha1:547ebab319b228b064cf5dcb3ff0ae1bf23d24a2</id>
<content type='text'>
Access to the global _res structure replaced by pointers to a
per thread instance.  If unthreaded the pointer is to the
global structure.

Also replaced a 64k stack array with malloc-ed memory so
threaded aps (with a default 64k stack) have a chance at working.
ok deraadt@
</content>
</entry>
<entry>
<title>Updates from http://www.isc.org/products/BIND/patches/bind4910.diff</title>
<updated>2002-11-14T02:48:00+00:00</updated>
<author>
<name>millert</name>
<email></email>
</author>
<published>2002-11-14T02:48:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=835bcf7be2030a2ecb03922fd3a821fe06474356'/>
<id>urn:sha1:835bcf7be2030a2ecb03922fd3a821fe06474356</id>
<content type='text'>
 o check __dn_skipname() return value for errors
 o fix sanity checking of reverse records, getnetbyname() may not
   have been working before.
</content>
</entry>
<entry>
<title>allocate 64K recieve buffer for DNS responses.</title>
<updated>2002-08-27T08:53:13+00:00</updated>
<author>
<name>itojun</name>
<email></email>
</author>
<published>2002-08-27T08:53:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=69e635aa5ff8682829c1dabe85f07036fe78a8d8'/>
<id>urn:sha1:69e635aa5ff8682829c1dabe85f07036fe78a8d8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>kill more strcpy</title>
<updated>2002-07-25T21:13:45+00:00</updated>
<author>
<name>deraadt</name>
<email></email>
</author>
<published>2002-07-25T21:13:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=38f8ca9fa51b59794faf1c8ca4e9b1b7c06eeb42'/>
<id>urn:sha1:38f8ca9fa51b59794faf1c8ca4e9b1b7c06eeb42</id>
<content type='text'>
</content>
</entry>
<entry>
<title>avoid remote buffer overrun on hostbuf[].  From: Joost Pol &lt;joost@pine.nl&gt;</title>
<updated>2002-06-26T06:00:54+00:00</updated>
<author>
<name>itojun</name>
<email></email>
</author>
<published>2002-06-26T06:00:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=2de6ddb6a22feedbcbc44271ca3841ddc526981b'/>
<id>urn:sha1:2de6ddb6a22feedbcbc44271ca3841ddc526981b</id>
<content type='text'>
correct bad practice in the code - it uses two changing variables
to manage buffer (buf and buflen).  we eliminate buflen and use
fixed point (ep) as the ending pointer.

this fix is critical.
</content>
</entry>
<entry>
<title>Part one of userland __P removal.  Done with a simple regexp with some minor hand editing to make comments line up correctly.  Another pass is forthcoming that handles the cases that could not be done automatically.</title>
<updated>2002-02-16T21:27:50+00:00</updated>
<author>
<name>millert</name>
<email></email>
</author>
<published>2002-02-16T21:27:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=052e020be6be85be6238c44b8386a61f8db7b6a4'/>
<id>urn:sha1:052e020be6be85be6238c44b8386a61f8db7b6a4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>use strlcpy vs strncpy+a[len-1]='\0'.  millert@ ok.</title>
<updated>2001-06-27T00:58:56+00:00</updated>
<author>
<name>lebel</name>
<email></email>
</author>
<published>2001-06-27T00:58:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=ba6f70d7550cc513151c4bb719659d4775a9efff'/>
<id>urn:sha1:ba6f70d7550cc513151c4bb719659d4775a9efff</id>
<content type='text'>
</content>
</entry>
</feed>
