aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2011-07-17 05:33:22 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2011-07-17 05:33:22 +0000
commit74d7a2539e82af72fe4648d00c1cbc1810891e4c (patch)
treef81e0ad229f6afb4117e513753b28752a4518683 /sys
parent43e819a48425fb968b1a2e85b223fbab3b96ceae (diff)
downloadsrc-74d7a2539e82af72fe4648d00c1cbc1810891e4c.tar.gz
src-74d7a2539e82af72fe4648d00c1cbc1810891e4c.zip
Remove the 'either' from the comment as it'll be less obvious that we
removed semmap in a bit of time from now. Re-wrap. Suggested by: jhb
Notes
Notes: svn path=/head/; revision=224123
Diffstat (limited to 'sys')
-rw-r--r--sys/compat/linux/linux_ipc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/compat/linux/linux_ipc.c b/sys/compat/linux/linux_ipc.c
index a43de9524a46..36223b1c2d28 100644
--- a/sys/compat/linux/linux_ipc.c
+++ b/sys/compat/linux/linux_ipc.c
@@ -578,10 +578,10 @@ linux_semctl(struct thread *td, struct linux_semctl_args *args)
bcopy(&seminfo, &linux_seminfo.semmni, sizeof(linux_seminfo) -
sizeof(linux_seminfo.semmap) );
/*
- * Linux does not use the semmap field either but populates it
- * with the defined value from SEMMAP, which really is redefined
- * to SEMMNS, which they define as SEMMNI * SEMMSL.
- * Try to simulate this returning our dynamic semmns value.
+ * Linux does not use the semmap field but populates it with
+ * the defined value from SEMMAP, which really is redefined to
+ * SEMMNS, which they define as SEMMNI * SEMMSL. Try to
+ * simulate this returning our dynamic semmns value.
*/
linux_seminfo.semmap = linux_seminfo.semmns;
/* XXX BSD equivalent?