<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.sbin/yppoll, branch release/7.0.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2008-02-24T05:45:17+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2008-02-24T05:45:17+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a9c219fa3cec18ef9f30edec6fa106bf0e2d423d'/>
<id>a9c219fa3cec18ef9f30edec6fa106bf0e2d423d</id>
<content type='text'>
'RELENG_7_0_0_RELEASE'.

This commit was manufactured to restore the state of the 7.0-RELEASE image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_7_0_0_RELEASE'.

This commit was manufactured to restore the state of the 7.0-RELEASE image.
</pre>
</div>
</content>
</entry>
<entry>
<title>Include &lt;timeconv.h&gt; for time conversion functions.</title>
<updated>2004-05-24T16:10:57+00:00</updated>
<author>
<name>Stefan Farfeleder</name>
<email>stefanf@FreeBSD.org</email>
</author>
<published>2004-05-24T16:10:57+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e54fb3f2dc353bdab4e5a7aee5ff36720de7b227'/>
<id>e54fb3f2dc353bdab4e5a7aee5ff36720de7b227</id>
<content type='text'>
Approved by:	das (mentor)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Approved by:	das (mentor)
</pre>
</div>
</content>
</entry>
<entry>
<title>Use __FBSDID over rcsid[].  Protect copyright[] where needed.</title>
<updated>2003-05-03T21:06:42+00:00</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-05-03T21:06:42+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=b728350ee67c01f96c3c5121774536fee81ad176'/>
<id>b728350ee67c01f96c3c5121774536fee81ad176</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The .Nm utility</title>
<updated>2002-07-14T14:47:15+00:00</updated>
<author>
<name>Philippe Charnier</name>
<email>charnier@FreeBSD.org</email>
</author>
<published>2002-07-14T14:47:15+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=490d5836b5ab0c76675986696b1637fff97dfae2'/>
<id>490d5836b5ab0c76675986696b1637fff97dfae2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ANSIfy and remove some dead code.</title>
<updated>2002-02-06T15:26:07+00:00</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2002-02-06T15:26:07+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=dc584ddbc5eb111cdb9863e2652621d7b5e9ba76'/>
<id>dc584ddbc5eb111cdb9863e2652621d7b5e9ba76</id>
<content type='text'>
Sponsored by:	DARPA, NAI Labs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Sponsored by:	DARPA, NAI Labs
</pre>
</div>
</content>
</entry>
<entry>
<title>Apply the following mechanical transformations in preparation for</title>
<updated>2002-02-06T13:30:31+00:00</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2002-02-06T13:30:31+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=ed4d1c46a27632aa553e7c24c969262bfc2d5c97'/>
<id>ed4d1c46a27632aa553e7c24c969262bfc2d5c97</id>
<content type='text'>
ansification and constification:

    s{\s+__P\((\(.*?\))\)}{$1}g;
    s{\(\s+}{\(}g;
    s{\s+\)}{\)}g;
    s{\s+,}{,}g;
    s{(\s+)(for|if|switch|while)\(}{$1$2 \(}g;
    s{return ([^\(].*?);}{return ($1);}g;
    s{([\w\)])([!=+/\*-]?=)([\w\(+-])}{$1 $2 $3}g;
    s{\s+$}{\n};g

Also add $FreeBSD$ where needed.

MFC after:	1 week
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ansification and constification:

    s{\s+__P\((\(.*?\))\)}{$1}g;
    s{\(\s+}{\(}g;
    s{\s+\)}{\)}g;
    s{\s+,}{,}g;
    s{(\s+)(for|if|switch|while)\(}{$1$2 \(}g;
    s{return ([^\(].*?);}{return ($1);}g;
    s{([\w\)])([!=+/\*-]?=)([\w\(+-])}{$1 $2 $3}g;
    s{\s+$}{\n};g

Also add $FreeBSD$ where needed.

MFC after:	1 week
</pre>
</div>
</content>
</entry>
<entry>
<title>I've been meaning to do this for a while.  Add an underscore to the</title>
<updated>2002-01-19T23:20:02+00:00</updated>
<author>
<name>Matthew Dillon</name>
<email>dillon@FreeBSD.org</email>
</author>
<published>2002-01-19T23:20:02+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=170ac683f26f1d05a019b0623b51b4b8f4576ada'/>
<id>170ac683f26f1d05a019b0623b51b4b8f4576ada</id>
<content type='text'>
time_to_xxx() and xxx_to_time() functions.  e.g. _time_to_xxx()
instead of time_to_xxx(), to make it more obvious that these are
stopgap functions &amp; placemarkers and not meant to create a defacto
standard.  They will eventually be replaced when a real standard
comes out of committee.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
time_to_xxx() and xxx_to_time() functions.  e.g. _time_to_xxx()
instead of time_to_xxx(), to make it more obvious that these are
stopgap functions &amp; placemarkers and not meant to create a defacto
standard.  They will eventually be replaced when a real standard
comes out of committee.
</pre>
</div>
</content>
</entry>
<entry>
<title>yp(4) -&gt; yp(8).</title>
<updated>2002-01-14T16:59:03+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2002-01-14T16:59:03+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=491a8429624c0cf6c17e6e0b80d6a09e3b347984'/>
<id>491a8429624c0cf6c17e6e0b80d6a09e3b347984</id>
<content type='text'>
PR:		docs/30797
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR:		docs/30797
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix int vs time_t, convert int to time_t</title>
<updated>2001-10-28T20:40:58+00:00</updated>
<author>
<name>Matthew Dillon</name>
<email>dillon@FreeBSD.org</email>
</author>
<published>2001-10-28T20:40:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=aa3e4732e7044949fad7e2c12eb2a4edb6f59888'/>
<id>aa3e4732e7044949fad7e2c12eb2a4edb6f59888</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Include missing header files which define functions for which gcc has</title>
<updated>2001-06-24T20:25:23+00:00</updated>
<author>
<name>Dima Dorfman</name>
<email>dd@FreeBSD.org</email>
</author>
<published>2001-06-24T20:25:23+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=2694efd413ab691097cf31016c5f7cbec372b10a'/>
<id>2694efd413ab691097cf31016c5f7cbec372b10a</id>
<content type='text'>
builtints (e.g., exit, strcmp).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
builtints (e.g., exit, strcmp).
</pre>
</div>
</content>
</entry>
</feed>
