summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2012-01-16 08:46:29 +0100
committerGuillem Jover <guillem@debian.org>2012-01-16 08:50:14 +0100
commit5e3480d4209d8ed2a80764bf905da268ab34c660 (patch)
tree7aa20da0483a9e08c6d0b22d6807526d9040acf8
parent4d0ff8d19ff9f00aed453cbbee002d6a4d930cfe (diff)
downloaddpkg-5e3480d4209d8ed2a80764bf905da268ab34c660.tar.gz
Fix typos (children)
Found by Lintian.
-rw-r--r--debian/changelog6
-rw-r--r--lib/compat/vsnprintf.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index 72e94b586..4e663f11c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -48,7 +48,7 @@ dpkg (1.16.2) UNRELEASED; urgency=low
* Add support for virtual output source:Package and source:Version fields.
Closes: #653575
* Use a different temporary file per process on libcompat's vsnprintf()
- function to avoid race conditions from childs after fork(3).
+ function to avoid race conditions from children after fork(3).
Reported by Daniel Ruoso <daniel@ruoso.com>. Closes: #655411
* Fix start-stop-daemon --exec and --name options on FreeBSD, NetBSD and
OpenBSD by swapping the process matching implementations.
@@ -2394,7 +2394,7 @@ dpkg (1.14.21) unstable; urgency=low
* Match description of -si option in dpkg-buildpackage to the one in
dpkg-genchanges. Closes: #493743
* Close --status-fd file descriptors on exec, so that they are not
- inherited by the childs. Closes: #471488, #487684
+ inherited by the children. Closes: #471488, #487684
* State that the preferred front-end is aptitude and replace one instance
of dselect usage with apt-get. Closes: #483785
@@ -2437,7 +2437,7 @@ dpkg (1.14.20) unstable; urgency=low
* When dpkg-divert does renames do no check the target file if the source
does not exist and the rename is thus being disabled. This also allows
to remove bogus diversions. Closes: #476973, #469033
- * Properly close triggers 'File' file, so it does not get leaked to childs.
+ * Properly close triggers 'File' file, so it does not get leaked to children.
[ Raphaƫl Hertzog ]
* Add missing 'use File::Path' in Dpkg::Source::Package::V3::quilt.
diff --git a/lib/compat/vsnprintf.c b/lib/compat/vsnprintf.c
index 5661bce7c..f28be3b28 100644
--- a/lib/compat/vsnprintf.c
+++ b/lib/compat/vsnprintf.c
@@ -38,7 +38,7 @@ vsnprintf(char *buf, size_t maxsize, const char *fmt, va_list args)
if (maxsize != 0 && buf == NULL)
return -1;
- /* Avoid race conditions from childs after a fork(2). */
+ /* Avoid race conditions from children after a fork(2). */
if (file_pid > 0 && file_pid != getpid()) {
fclose(file);
file = NULL;