summaryrefslogtreecommitdiffstats
path: root/sys/kern/imgact_elf.c
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>2002-09-02 17:27:30 +0000
committerdillon <dillon@FreeBSD.org>2002-09-02 17:27:30 +0000
commit49e348fa488ebb81ef2e61bed1a9d4aee0c58275 (patch)
tree32ce4a298dd4ec0a356dae4af23e329bd62e9923 /sys/kern/imgact_elf.c
parent9b019eb1eb2e32d0bc07790741c1dd93e99f41d7 (diff)
downloadFreeBSD-src-49e348fa488ebb81ef2e61bed1a9d4aee0c58275.zip
FreeBSD-src-49e348fa488ebb81ef2e61bed1a9d4aee0c58275.tar.gz
Grammer cleanup
Diffstat (limited to 'sys/kern/imgact_elf.c')
-rw-r--r--sys/kern/imgact_elf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/imgact_elf.c b/sys/kern/imgact_elf.c
index 8ac19a7..af11111 100644
--- a/sys/kern/imgact_elf.c
+++ b/sys/kern/imgact_elf.c
@@ -735,7 +735,7 @@ __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp)
/*
* Is this .text or .data? Use VM_PROT_WRITE
- * to distinguish between the two for the purposes
+ * to distinguish between the two for the purpose
* of limit checking and vmspace fields.
*/
if (prot & VM_PROT_WRITE) {
@@ -762,7 +762,7 @@ __CONCAT(exec_, __elfN(imgact))(struct image_params *imgp)
goto fail;
}
- /* Does the entry point belongs to this segment? */
+ /* Does the entry point belong to this segment? */
if (hdr->e_entry >= phdr[i].p_vaddr &&
hdr->e_entry < (phdr[i].p_vaddr +
phdr[i].p_memsz)) {
OpenPOWER on IntegriCloud