diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-02-17 18:07:38 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-02-17 18:07:38 +0000 |
commit | 47706ecaf12d67a399225153e56f1d84398bfc5a (patch) | |
tree | 91e2d50aef16270c2a3d54804708488e708251ce /sys/compat | |
parent | 9a1e8d3a36cfe08049fdc4373b501abf7b1454c1 (diff) |
miscellaneous typo fixes:
- sturct -> struct (spotted by pedro)
- elimination of consecutive 'the' words
ok jmc@, henning@, krw@, robert@, some whining by jolan@
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/linux_misc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 8e1c43d7f59..dc9a315fada 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_misc.c,v 1.57 2004/06/24 19:35:23 tholo Exp $ */ +/* $OpenBSD: linux_misc.c,v 1.58 2005/02/17 18:07:36 jfb Exp $ */ /* $NetBSD: linux_misc.c,v 1.27 1996/05/20 01:59:21 fvdl Exp $ */ /*- @@ -527,7 +527,7 @@ linux_sys_uname(p, v, retval) strlcpy(luts.l_machine, machine, sizeof(luts.l_machine)); strlcpy(luts.l_domainname, domainname, sizeof(luts.l_domainname)); - /* This part taken from the the uname() in libc */ + /* This part taken from the uname() in libc */ len = sizeof(luts.l_version); for (cp = luts.l_version; len--; ++cp) if (*cp == '\n' || *cp == '\t') @@ -556,7 +556,7 @@ linux_sys_olduname(p, v, retval) strlcpy(luts.l_version, version, sizeof(luts.l_version)); strlcpy(luts.l_machine, machine, sizeof(luts.l_machine)); - /* This part taken from the the uname() in libc */ + /* This part taken from the uname() in libc */ len = sizeof(luts.l_version); for (cp = luts.l_version; len--; ++cp) if (*cp == '\n' || *cp == '\t') @@ -585,7 +585,7 @@ linux_sys_oldolduname(p, v, retval) strlcpy(luts.l_version, version, sizeof(luts.l_version)); strlcpy(luts.l_machine, machine, sizeof(luts.l_machine)); - /* This part taken from the the uname() in libc */ + /* This part taken from the uname() in libc */ len = sizeof(luts.l_version); for (cp = luts.l_version; len--; ++cp) if (*cp == '\n' || *cp == '\t') |