aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2016-05-01 19:39:23 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2016-05-01 19:39:23 +0000
commitec489d64bb4c1bca1a6bdfdf7e37900a85f886bc (patch)
treeffa687a399a7a4e46e467d0252471688dc79ac9d /libexec
parent75f46cf6c81eff6229b9579513b6e7769b91d75d (diff)
Notes
Diffstat (limited to 'libexec')
-rw-r--r--libexec/ftpd/ftpd.c2
-rw-r--r--libexec/ftpd/popen.c2
-rw-r--r--libexec/rtld-elf/malloc.c2
-rw-r--r--libexec/rtld-elf/rtld.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c
index b3c78f677a46f..b9c906975dc47 100644
--- a/libexec/ftpd/ftpd.c
+++ b/libexec/ftpd/ftpd.c
@@ -2048,7 +2048,7 @@ pdata_err:
} while (0)
/*
- * Tranfer the contents of "instr" to "outstr" peer using the appropriate
+ * Transfer the contents of "instr" to "outstr" peer using the appropriate
* encapsulation of the data subject to Mode, Structure, and Type.
*
* NB: Form isn't handled.
diff --git a/libexec/ftpd/popen.c b/libexec/ftpd/popen.c
index 5620a79596b33..2dad033f0419c 100644
--- a/libexec/ftpd/popen.c
+++ b/libexec/ftpd/popen.c
@@ -60,7 +60,7 @@ __FBSDID("$FreeBSD$");
#define MAXGLOBARGS 1000
/*
- * Special version of popen which avoids call to shell. This ensures noone
+ * Special version of popen which avoids call to shell. This ensures no one
* may create a pipe to a hidden program as a side effect of a list or dir
* command.
*/
diff --git a/libexec/rtld-elf/malloc.c b/libexec/rtld-elf/malloc.c
index 0b3850b3d7581..a277d87f3b6c9 100644
--- a/libexec/rtld-elf/malloc.c
+++ b/libexec/rtld-elf/malloc.c
@@ -328,7 +328,7 @@ free(cp)
* old malloc man page, it realloc's an already freed block. Usually
* this is the last block it freed; occasionally it might be farther
* back. We have to search all the free lists for the block in order
- * to determine its bucket: 1st we make one pass thru the lists
+ * to determine its bucket: 1st we make one pass through the lists
* checking only the first block in each; if that fails we search
* ``realloc_srchlen'' blocks in each list for a match (the variable
* is extern so the caller can modify it). If that fails we just copy
diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c
index ba8c4a0453352..b7811cb3139a9 100644
--- a/libexec/rtld-elf/rtld.c
+++ b/libexec/rtld-elf/rtld.c
@@ -822,7 +822,7 @@ origin_subst_one(Obj_Entry *obj, char *real, const char *kw,
kw_len = strlen(kw);
/*
- * First, count the number of the keyword occurences, to
+ * First, count the number of the keyword occurrences, to
* preallocate the final string.
*/
for (p = real, subst_count = 0;; p = p1 + kw_len, subst_count++) {