<feed xmlns='http://www.w3.org/2005/Atom'>
<title>coreutils/src/dd.c, branch v6.7</title>
<subtitle>Mirror of https://https.git.savannah.gnu.org/git/coreutils.git/
</subtitle>
<id>https://git.shady.money/coreutils/atom?h=v6.7</id>
<link rel='self' href='https://git.shady.money/coreutils/atom?h=v6.7'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/'/>
<updated>2006-11-27T10:27:46Z</updated>
<entry>
<title>Improve the check for departures from C89, and fix the departures</title>
<updated>2006-11-27T10:27:46Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@penguin.cs.ucla.edu</email>
</author>
<published>2006-11-27T10:27:46Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=9b06af3367500dfe09067b047381e788969059cd'/>
<id>urn:sha1:9b06af3367500dfe09067b047381e788969059cd</id>
<content type='text'>
I found.
* Makefile.maint (my-distcheck): Also check for C89 compatibility
as best we can with GCC.
* src/stat.c (PRINTF_OPTION): Omit comma before } in enum
declaration; C89 doesn't allow this.
* src/dcgen: Don't generate string literals longer than
what C89 requires support for.
* src/cut.c (usage): Don't use string literals longer than
what C89 requires support for.
* src/date.c (usage): Likewise.
* src/dd.c (usage): Likewise.
* src/du.c (usage): Likewise.
* src/ls.c (usage): Likewise.
* src/od.c (usage): Likewise.
* src/readlink.c (usage): Likewise.
* src/seq.c (usage): Likewise.
* src/shred.c (usage): Likewise.
</content>
</entry>
<entry>
<title>Help valgrind see that there is no leak in dd.c.</title>
<updated>2006-11-16T08:15:47Z</updated>
<author>
<name>Jim Meyering</name>
<email>jim@meyering.net</email>
</author>
<published>2006-11-16T08:15:47Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=fc9b802e3d282875e2ad4bcafa954c0ce1c759f8'/>
<id>urn:sha1:fc9b802e3d282875e2ad4bcafa954c0ce1c759f8</id>
<content type='text'>
* src/dd.c (dd_copy): Declare real_buf and real_obuf to be static,
so we need not free them at all.  This is easier than freeing
both buffers at each of the early "return"s.
</content>
</entry>
<entry>
<title>* src/dd.c (usage): Use two spaces (not one) to separate the</title>
<updated>2006-10-17T13:51:47Z</updated>
<author>
<name>Jim Meyering</name>
<email>jim@meyering.net</email>
</author>
<published>2006-10-17T13:51:47Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=a186e9eda6b9691a568ea72a7c8e6e9d8f0c1225'/>
<id>urn:sha1:a186e9eda6b9691a568ea72a7c8e6e9d8f0c1225</id>
<content type='text'>
"fdatasync" option string from its description, so help2man formats
the derived man page properly.  Reported by Samuel Thibault
in &lt;http://bugs.debian.org/393649&gt;.
</content>
</entry>
<entry>
<title>* src/dd.c (flags): noatime and nofollow now depend on</title>
<updated>2006-10-05T21:39:12Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2006-10-05T21:39:12Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=1fa3b5014035f324ddec26576c0283d00bfbbbef'/>
<id>urn:sha1:1fa3b5014035f324ddec26576c0283d00bfbbbef</id>
<content type='text'>
HAVE_WORKING_O_NOATIME and HAVE_WORKING_O_NOFOLLOW, too.
(usage): Output info about noatime and nofollow only if
they are known to work.
* src/remove.c (AD_push): Inspect HAVE_WORKING_O_NOFOLLOW rather
than O_NOFOLLOW, when testing whether it's possible to avoid a
race condition reliably.
</content>
</entry>
<entry>
<title>Fix bugs when printing plurals of numbers that are not</title>
<updated>2006-08-16T19:36:46Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2006-08-16T19:36:46Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=b96f5ea4925854db9eae61f98a7ec44568ecae7d'/>
<id>urn:sha1:b96f5ea4925854db9eae61f98a7ec44568ecae7d</id>
<content type='text'>
unsigned long int values.
* src/system.h (select_plural): New function.
* src/md5sum.c (digest_check): Use select_plural to avoid bug.
* src/uptime.c (print_uptime): Likewise.
* src/dd.c (print_stats): Likewise.  Also, don't use ngettext to
print a floating point number, as reducing to 0 or 1 doesn't work
for some languages.  Instead, just use "s" for seconds since it
doesn't need a plural form.
</content>
</entry>
<entry>
<title>* src/dd.c (print_stats): Don't substitute "1" for number, as this</title>
<updated>2006-08-15T20:50:22Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2006-08-15T20:50:22Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=7b0f6f1559b98597407bf85fd2a283e8ea678bdd'/>
<id>urn:sha1:7b0f6f1559b98597407bf85fd2a283e8ea678bdd</id>
<content type='text'>
causes confusion for the Hungarian translators.  Problem reported
by Egmont Koblinger.
</content>
</entry>
<entry>
<title>Warn about oflag=append without conv=notrunc.</title>
<updated>2006-08-09T21:16:28Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2006-08-09T21:16:28Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=d24265f9659d21c8e89f1f21cf3b774c7c120afe'/>
<id>urn:sha1:d24265f9659d21c8e89f1f21cf3b774c7c120afe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>(apply_translations): Use toupper rather than</title>
<updated>2006-07-09T17:01:38Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2006-07-09T17:01:38Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=7c3fd7cbecbbccf9278b419fc23bd8a25f924177'/>
<id>urn:sha1:7c3fd7cbecbbccf9278b419fc23bd8a25f924177</id>
<content type='text'>
islower followed by toupper; it's simpler and typically
faster now that we assume at least C89 semantics.  Similarly
for tolower.
</content>
</entry>
<entry>
<title>* src/dd.c (skip): Remove one of two adjacent "the"s in a comment.</title>
<updated>2006-07-08T06:04:18Z</updated>
<author>
<name>Jim Meyering</name>
<email>jim@meyering.net</email>
</author>
<published>2006-07-08T06:04:18Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=6b535b03bbabb96b9c7a63881680a159b4e9d9c8'/>
<id>urn:sha1:6b535b03bbabb96b9c7a63881680a159b4e9d9c8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>(iwrite): Remove assignment without effect.</title>
<updated>2006-03-30T13:47:57Z</updated>
<author>
<name>Jim Meyering</name>
<email>jim@meyering.net</email>
</author>
<published>2006-03-30T13:47:57Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=38433b219d2fa8be5e399a6f48d633411dccbb22'/>
<id>urn:sha1:38433b219d2fa8be5e399a6f48d633411dccbb22</id>
<content type='text'>
Reported by Felix Rauch Valenti.
</content>
</entry>
</feed>
