<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin/sort/bwstring.c, branch releng/11.4</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>MFC r326276:</title>
<updated>2018-03-05T07:26:05+00:00</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-05T07:26:05+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=25d4b2c1b89d42d752e23f9935692f481cb272ea'/>
<id>25d4b2c1b89d42d752e23f9935692f481cb272ea</id>
<content type='text'>
various: general adoption of SPDX licensing ID tags.

Mainly focus on files that use BSD 2-Clause license, however the tool I
was using misidentified many licenses so this was mostly a manual - error
prone - task.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.

No functional change intended.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
various: general adoption of SPDX licensing ID tags.

Mainly focus on files that use BSD 2-Clause license, however the tool I
was using misidentified many licenses so this was mostly a manual - error
prone - task.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.

No functional change intended.
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC r309232-309234:</title>
<updated>2016-12-12T00:45:43+00:00</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2016-12-12T00:45:43+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3a5c71e2a7ecde3b392cab3e3628a058976d0968'/>
<id>3a5c71e2a7ecde3b392cab3e3628a058976d0968</id>
<content type='text'>
r309232: Fix an obvious typo.
r309233: Eliminate variables that are computed, assigned but
         never used.
r309234: pages and psize are always assigned, so there is no
         need to initialize them as zero.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
r309232: Fix an obvious typo.
r309233: Eliminate variables that are computed, assigned but
         never used.
r309234: pages and psize are always assigned, so there is no
         need to initialize them as zero.
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup unnecessary semicolons from utilities we all love.</title>
<updated>2016-04-15T22:31:22+00:00</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2016-04-15T22:31:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=80c7cc1c8f027fcf5d5f0a2df4b9aef6904ed079'/>
<id>80c7cc1c8f027fcf5d5f0a2df4b9aef6904ed079</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>sort(1): Cleanups and a small memory leak.</title>
<updated>2015-04-07T01:17:29+00:00</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2015-04-07T01:17:29+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=b904ab99bc3a9be6772d6af0d1bf97e625e93a4c'/>
<id>b904ab99bc3a9be6772d6af0d1bf97e625e93a4c</id>
<content type='text'>
Remove useless check for leading blanks in the month name.  The
code didn't adjust len after stripping blanks so even if a month
*did* start with a blank we'd end up copying garbage at the end.
Also convert a malloc + memcpy to strdup and fix a memory leak in
the wide char version if mbstowcs() fails.
Originally from Andre Smagin.

Obtained from:  OpenBSD (CVS rev. 1.2, 1.3)
MFC after:	1 week
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove useless check for leading blanks in the month name.  The
code didn't adjust len after stripping blanks so even if a month
*did* start with a blank we'd end up copying garbage at the end.
Also convert a malloc + memcpy to strdup and fix a memory leak in
the wide char version if mbstowcs() fails.
Originally from Andre Smagin.

Obtained from:  OpenBSD (CVS rev. 1.2, 1.3)
MFC after:	1 week
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert (partial)	r281123, r281125:</title>
<updated>2015-04-06T02:35:55+00:00</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2015-04-06T02:35:55+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e5f71a07e4a8572b3cc96b2c8dcf14ed86b704f4'/>
<id>e5f71a07e4a8572b3cc96b2c8dcf14ed86b704f4</id>
<content type='text'>
sort: style knits / cleanups.

Our style guide(9) specifies that in absence of local variables
an empty line must be inserted.

Pointed out by:	eadler
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
sort: style knits / cleanups.

Our style guide(9) specifies that in absence of local variables
an empty line must be inserted.

Pointed out by:	eadler
</pre>
</div>
</content>
</entry>
<entry>
<title>sort: style knits / cleanups.</title>
<updated>2015-04-05T23:06:42+00:00</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2015-04-05T23:06:42+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=db8026c7bb730308591ec6effdd24feef7ab5f4b'/>
<id>db8026c7bb730308591ec6effdd24feef7ab5f4b</id>
<content type='text'>
Obtained from:	OpenBSD
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Obtained from:	OpenBSD
</pre>
</div>
</content>
</entry>
<entry>
<title>sort: Fix a comment.</title>
<updated>2015-04-05T22:34:03+00:00</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2015-04-05T22:34:03+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=bd0f80c6678a5bcfa14bc505b1bd5cd1f3ce3d8c'/>
<id>bd0f80c6678a5bcfa14bc505b1bd5cd1f3ce3d8c</id>
<content type='text'>
Obtained from:	OpenBSD
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Obtained from:	OpenBSD
</pre>
</div>
</content>
</entry>
<entry>
<title>- Update Oleg Moskalenko's email address</title>
<updated>2013-06-02T09:43:48+00:00</updated>
<author>
<name>Gabor Kovesdan</name>
<email>gabor@FreeBSD.org</email>
</author>
<published>2013-06-02T09:43:48+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=c859c6dd547718ff43f7cdec38cebbf56b6ff732'/>
<id>c859c6dd547718ff43f7cdec38cebbf56b6ff732</id>
<content type='text'>
Requested by:	Oleg Moskalenko &lt;mom040267@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Requested by:	Oleg Moskalenko &lt;mom040267@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>- Portability changes for ARM</title>
<updated>2012-11-01T11:38:34+00:00</updated>
<author>
<name>Gabor Kovesdan</name>
<email>gabor@FreeBSD.org</email>
</author>
<published>2012-11-01T11:38:34+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e8da8c744b5150d2165eeed3ecf71584f19abb03'/>
<id>e8da8c744b5150d2165eeed3ecf71584f19abb03</id>
<content type='text'>
- Allow larger sort memory on 64-bit platforms

Submitted by:	Oleg Moskalenko &lt;oleg.moskalenko@citrix.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Allow larger sort memory on 64-bit platforms

Submitted by:	Oleg Moskalenko &lt;oleg.moskalenko@citrix.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>- Only use multi-threading for large files</title>
<updated>2012-05-25T09:30:16+00:00</updated>
<author>
<name>Gabor Kovesdan</name>
<email>gabor@FreeBSD.org</email>
</author>
<published>2012-05-25T09:30:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=5ca724dc596f56270b3a5809a812fe06998a9769'/>
<id>5ca724dc596f56270b3a5809a812fe06998a9769</id>
<content type='text'>
- Do not use mmap() by default; it can be enabled by --mmap
- Add some minor optimizations for -u
- Update manual page according to the changes

Submitted by:	Oleg Moskalenko &lt;oleg.moskalenko@citrix.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Do not use mmap() by default; it can be enabled by --mmap
- Add some minor optimizations for -u
- Update manual page according to the changes

Submitted by:	Oleg Moskalenko &lt;oleg.moskalenko@citrix.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
