<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libc/rpc, branch upstream/2.2.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=upstream%2F2.2.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=upstream%2F2.2.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>1997-02-28T05:51:15Z</updated>
<entry>
<title>YAMFC:</title>
<updated>1997-02-28T05:51:15Z</updated>
<author>
<name>Mike Pritchard</name>
<email>mpp@FreeBSD.org</email>
</author>
<published>1997-02-28T05:51:15Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e6864ce05b152e1597e235302a7ac3265dc7a479'/>
<id>urn:sha1:e6864ce05b152e1597e235302a7ac3265dc7a479</id>
<content type='text'>
Commit all of the -current changes that apply to 2.2.  These fall into
several categories:

- Cosmetic/mdoc changes.  They don't really afect the output
  at all, but having them in 2.2 will make it easier to diff the man
  pages later when looking for real changes.
- Update some man pages to reflect the current 2.2 header files.
- Sort xrefs.
- A few typo fixes.
- And a few changes that actualy added text to the man page that should
  be reflected in 2.2.
- Add some missing MLINKS.

Requested by: bde
</content>
</entry>
<entry>
<title>YAMFC:</title>
<updated>1996-12-21T23:59:59Z</updated>
<author>
<name>Mike Pritchard</name>
<email>mpp@FreeBSD.org</email>
</author>
<published>1996-12-21T23:59:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=2d21c22f9dc5408dcc70062992a41588f4fe143a'/>
<id>urn:sha1:2d21c22f9dc5408dcc70062992a41588f4fe143a</id>
<content type='text'>
Convert various man pages to mdoc format.

Grammar/style/misc changes in calendar.1.

Update mdoc.template(7) to reflect two required requests.
</content>
</entry>
<entry>
<title>YAMFC</title>
<updated>1996-11-25T07:23:37Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>1996-11-25T07:23:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ecffe94354e4bba8585d7bf8b536e84be298e318'/>
<id>urn:sha1:ecffe94354e4bba8585d7bf8b536e84be298e318</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use the more robust and more efficient reserved port allocation mechanism</title>
<updated>1996-08-12T14:09:46Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1996-08-12T14:09:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=cf2fcd35ddc6b7d8664356eba6d1b89734aa4cb8'/>
<id>urn:sha1:cf2fcd35ddc6b7d8664356eba6d1b89734aa4cb8</id>
<content type='text'>
now built into bind(2).

Obtained from: OpenBSD / Jason Downs / Theo de Raadt
</content>
</entry>
<entry>
<title>clear various struct sockaddr_in's on stack, set sin_len.</title>
<updated>1996-08-12T14:00:26Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1996-08-12T14:00:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=54edc0bbbfcc1123b31fa29f3502bb25e5769d93'/>
<id>urn:sha1:54edc0bbbfcc1123b31fa29f3502bb25e5769d93</id>
<content type='text'>
(Noticed when comparing to OpenBSD source)
</content>
</entry>
<entry>
<title>Code cleanup:</title>
<updated>1996-06-11T17:22:51Z</updated>
<author>
<name>James Raynard</name>
<email>jraynard@FreeBSD.org</email>
</author>
<published>1996-06-11T17:22:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=b2843ce28883df87d756f51f007f7d96872d9198'/>
<id>urn:sha1:b2843ce28883df87d756f51f007f7d96872d9198</id>
<content type='text'>
Fixed a couple of nitpick warnings, plus one that slipped through the
net earlier.

This directory now compiles without any warnings with -Wall! (Until
the next gcc upgrade...)
</content>
</entry>
<entry>
<title>Code cleanup:</title>
<updated>1996-06-10T20:13:09Z</updated>
<author>
<name>James Raynard</name>
<email>jraynard@FreeBSD.org</email>
</author>
<published>1996-06-10T20:13:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=f12d1a5dd0b4ac959f98fc3c418b3f1e6d77bfa6'/>
<id>urn:sha1:f12d1a5dd0b4ac959f98fc3c418b3f1e6d77bfa6</id>
<content type='text'>
1.  Added missing function prototypes.
2.  Added missing function return types.
3.  Added missing function argument types.
4.  Added missing headers for system function prototypes.
5.  Corrected format specifier in printf().
6.  Added extra parentheses around assignment used as truth value.
7.  Added missing "default" cases in switch statements.
8.  Added casts for function pointers.
9.  Did *not* change int declarations of uid and gid to uid_t/gid_t
    because I don't know if that would affect the protocol. Put in
    explicit casts to int instead, to make things more obvious.
10. Moved declarations of variables that are only used if YP is
    defined inside the '#ifdef YP' conditionals.
</content>
</entry>
<entry>
<title>Remove extraneous '+' that looks like it was left in by mistake. This</title>
<updated>1996-06-10T04:59:05Z</updated>
<author>
<name>Bill Paul</name>
<email>wpaul@FreeBSD.org</email>
</author>
<published>1996-06-10T04:59:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=2f5fc074d97e37c9d69ba62dbca686c9af3b1576'/>
<id>urn:sha1:2f5fc074d97e37c9d69ba62dbca686c9af3b1576</id>
<content type='text'>
module compiles now.

Reported by: Stephen Hocking
</content>
</entry>
<entry>
<title>Code cleanup (part two):</title>
<updated>1996-06-10T00:49:19Z</updated>
<author>
<name>James Raynard</name>
<email>jraynard@FreeBSD.org</email>
</author>
<published>1996-06-10T00:49:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=7d6a21b4d787bed3ad25c4409b7c244413cc4090'/>
<id>urn:sha1:7d6a21b4d787bed3ad25c4409b7c244413cc4090</id>
<content type='text'>
1. Added missing function prototypes.
2. Added missing function return types.
3. Added missing function argument types.
4. Added missing headers for system function prototypes.
5. Corrected casts in select() args.
6. Got rid of more "extern int errno" rubbish.
7. Added extra parentheses around assignment used as truth value.
8. Fixed bug in clnt_{tcp, udp}create() where pointers could be free'd
    even if they hadn't been successfully malloc()'d.
</content>
</entry>
<entry>
<title>Code cleanup (part one):</title>
<updated>1996-06-08T22:54:59Z</updated>
<author>
<name>James Raynard</name>
<email>jraynard@FreeBSD.org</email>
</author>
<published>1996-06-08T22:54:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c124f3bdfc3262994e12f4364f93ae4b2a366778'/>
<id>urn:sha1:c124f3bdfc3262994e12f4364f93ae4b2a366778</id>
<content type='text'>
1. Added missing function prototypes.

2. Added missing function return types.

3. Added missing function argument types.

4. Added missing headers for system function prototypes.

5. Got rid of "extern int errno" rubbish.
</content>
</entry>
</feed>
