diff options
| author | simonb <simonb@NetBSD.org> | 2004-04-23 02:58:27 +0000 |
|---|---|---|
| committer | simonb <simonb@NetBSD.org> | 2004-04-23 02:58:27 +0000 |
| commit | 9bc855a9318a0a67f86e978bdd66366e2786b5ef (patch) | |
| tree | 5ad22dd973d299d05210905342892ed44925baa8 | |
| parent | ba5d7d507ca5f52f1ee68ed0c1a8527c58d07c9d (diff) | |
s/the the/the/ (only in sources that aren't regularly imported from
elsewhere).
50 files changed, 127 insertions, 131 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c index 0ef823ef666..dcf275ce0e1 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -1,4 +1,4 @@ -/* $NetBSD: print.c,v 1.89 2004/03/27 14:55:24 simonb Exp $ */ +/* $NetBSD: print.c,v 1.90 2004/04/23 02:58:27 simonb Exp $ */ /* * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -70,7 +70,7 @@ #if 0 static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94"; #else -__RCSID("$NetBSD: print.c,v 1.89 2004/03/27 14:55:24 simonb Exp $"); +__RCSID("$NetBSD: print.c,v 1.90 2004/04/23 02:58:27 simonb Exp $"); #endif #endif /* not lint */ @@ -169,7 +169,7 @@ printheader(void) } /* - * Return 1 if the the command name in the argument vector (u-area) does + * Return 1 if the command name in the argument vector (u-area) does * not match the command name (p_comm) */ static int diff --git a/bin/ps/ps.1 b/bin/ps/ps.1 index 194b3e892cb..f20e8ebc7f9 100644 --- a/bin/ps/ps.1 +++ b/bin/ps/ps.1 @@ -1,4 +1,4 @@ -.\" $NetBSD: ps.1,v 1.67 2004/03/27 14:52:36 simonb Exp $ +.\" $NetBSD: ps.1,v 1.68 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 1980, 1990, 1991, 1993, 1994 .\" The Regents of the University of California. All rights reserved. @@ -433,7 +433,7 @@ The login process traditionally adds a in front of the shell name to indicate a login shell. .Nm will not append parenthesized the command name if it matches with -the name in the the first argument of the argument vector, skipping +the name in the first argument of the argument vector, skipping the leading .Sq - . .It daemonname: current-activity diff --git a/games/backgammon/common_source/fancy.c b/games/backgammon/common_source/fancy.c index f9f99258803..d38bc4ea613 100644 --- a/games/backgammon/common_source/fancy.c +++ b/games/backgammon/common_source/fancy.c @@ -1,4 +1,4 @@ -/* $NetBSD: fancy.c,v 1.11 2003/08/07 09:36:57 agc Exp $ */ +/* $NetBSD: fancy.c,v 1.12 2004/04/23 02:58:27 simonb Exp $ */ /* * Copyright (c) 1980, 1993 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)fancy.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: fancy.c,v 1.11 2003/08/07 09:36:57 agc Exp $"); +__RCSID("$NetBSD: fancy.c,v 1.12 2004/04/23 02:58:27 simonb Exp $"); #endif #endif /* not lint */ @@ -591,7 +591,7 @@ fancyc(c) addbuf(c); return; } - /* process tabs, use spaces if the the tab should be erasing things, + /* process tabs, use spaces if the tab should be erasing things, * otherwise use cursor movement routines. Note this does not use * hardware tabs at all. */ if (c == '\t') { diff --git a/games/fortune/datfiles/farber b/games/fortune/datfiles/farber index 064dbb5d839..294d1a75ee9 100644 --- a/games/fortune/datfiles/farber +++ b/games/fortune/datfiles/farber @@ -1121,7 +1121,7 @@ It's the other end of the kettle of fish. % It's the straw that broke the ice. % -It's the the highest of the lows. +It's the highest of the lows. % It's the vilest smell I ever heard. % diff --git a/lib/libc/gen/pwcache.c b/lib/libc/gen/pwcache.c index fff35148861..57f6db4a83b 100644 --- a/lib/libc/gen/pwcache.c +++ b/lib/libc/gen/pwcache.c @@ -1,4 +1,4 @@ -/* $NetBSD: pwcache.c,v 1.25 2003/10/13 07:41:22 agc Exp $ */ +/* $NetBSD: pwcache.c,v 1.26 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1992 Keith Muller. @@ -71,7 +71,7 @@ #if 0 static char sccsid[] = "@(#)cache.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: pwcache.c,v 1.25 2003/10/13 07:41:22 agc Exp $"); +__RCSID("$NetBSD: pwcache.c,v 1.26 2004/04/23 02:58:27 simonb Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -244,7 +244,7 @@ grptb_start(void) /* * user_from_uid() * caches the name (if any) for the uid. If noname clear, we always - * return the the stored name (if valid or invalid match). + * return the stored name (if valid or invalid match). * We use a simple hash table. * Return * Pointer to stored name (or a empty string) @@ -314,7 +314,7 @@ user_from_uid(uid_t uid, int noname) /* * group_from_gid() * caches the name (if any) for the gid. If noname clear, we always - * return the the stored name (if valid or invalid match). + * return the stored name (if valid or invalid match). * We use a simple hash table. * Return * Pointer to stored name (or a empty string) diff --git a/lib/libc/gen/sysconf.3 b/lib/libc/gen/sysconf.3 index 90a7ab0f2b8..aa2ef4119bc 100644 --- a/lib/libc/gen/sysconf.3 +++ b/lib/libc/gen/sysconf.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: sysconf.3,v 1.29 2003/08/07 16:42:57 agc Exp $ +.\" $NetBSD: sysconf.3,v 1.30 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 1993 .\" The Regents of the University of California. All rights reserved. @@ -178,7 +178,7 @@ otherwise \-1. The version of ISO/IEC 9945 (POSIX 1003.1) with which the system attempts to comply. .It Li _SC_XOPEN_SHM -Return 1 if the the +Return 1 if the .St -xpg4.2 Shared Memory option is available on this system, diff --git a/lib/libcurses/curses_color.3 b/lib/libcurses/curses_color.3 index 035e2b3ecd9..3904c022b9b 100644 --- a/lib/libcurses/curses_color.3 +++ b/lib/libcurses/curses_color.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: curses_color.3,v 1.9 2004/03/16 10:58:25 wiz Exp $ +.\" $NetBSD: curses_color.3,v 1.10 2004/04/23 02:58:27 simonb Exp $ .\" Copyright (c) 2002 The NetBSD Foundation, Inc. .\" All rights reserved. .\" @@ -154,7 +154,7 @@ Color-pair 0 is used as the default color pair, so changing this will have no effect. Use the function .Fn assume_default_colors -to change the the default colors. +to change the default colors. .Pp The function .Fn pair_content pair *fore *back diff --git a/lib/libform/type_alnum.c b/lib/libform/type_alnum.c index 0e2dfad15cd..b5eea1e70df 100644 --- a/lib/libform/type_alnum.c +++ b/lib/libform/type_alnum.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_alnum.c,v 1.6 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: type_alnum.c,v 1.7 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -63,7 +63,7 @@ create_alnum_args(va_list *args) } /* - * Copy the the alnum argument structure. + * Copy the alnum argument structure. */ static char * copy_alnum_args(char *args) diff --git a/lib/libform/type_alpha.c b/lib/libform/type_alpha.c index f0df0cfee81..48862d7d564 100644 --- a/lib/libform/type_alpha.c +++ b/lib/libform/type_alpha.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_alpha.c,v 1.7 2003/03/09 00:57:19 lukem Exp $ */ +/* $NetBSD: type_alpha.c,v 1.8 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_alpha.c,v 1.7 2003/03/09 00:57:19 lukem Exp $"); +__RCSID("$NetBSD: type_alpha.c,v 1.8 2004/04/23 02:58:27 simonb Exp $"); #include <stdlib.h> #include <string.h> @@ -65,7 +65,7 @@ create_alpha_args(va_list *args) } /* - * Copy the the alpha argument structure. + * Copy the alpha argument structure. */ static char * copy_alpha_args(char *args) diff --git a/lib/libform/type_enum.c b/lib/libform/type_enum.c index e30e63183f3..f1a31d02336 100644 --- a/lib/libform/type_enum.c +++ b/lib/libform/type_enum.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_enum.c,v 1.8 2004/03/22 18:59:48 jdc Exp $ */ +/* $NetBSD: type_enum.c,v 1.9 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_enum.c,v 1.8 2004/03/22 18:59:48 jdc Exp $"); +__RCSID("$NetBSD: type_enum.c,v 1.9 2004/04/23 02:58:27 simonb Exp $"); #include <ctype.h> #include <stdlib.h> @@ -125,7 +125,7 @@ create_enum_args(va_list *args) } /* - * Copy the the enum argument structure. + * Copy the enum argument structure. */ static char * copy_enum_args(char *args) diff --git a/lib/libform/type_integer.c b/lib/libform/type_integer.c index bd6b37a0065..5c8dbfdc39f 100644 --- a/lib/libform/type_integer.c +++ b/lib/libform/type_integer.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_integer.c,v 1.5 2003/03/09 00:57:19 lukem Exp $ */ +/* $NetBSD: type_integer.c,v 1.6 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_integer.c,v 1.5 2003/03/09 00:57:19 lukem Exp $"); +__RCSID("$NetBSD: type_integer.c,v 1.6 2004/04/23 02:58:27 simonb Exp $"); #include <stdlib.h> #include <strings.h> @@ -70,7 +70,7 @@ create_integer_args(va_list *args) } /* - * Copy the the integer argument structure. + * Copy the integer argument structure. */ static char * copy_integer_args(char *args) diff --git a/lib/libform/type_numeric.c b/lib/libform/type_numeric.c index 84aa96d57c8..20a9a09af48 100644 --- a/lib/libform/type_numeric.c +++ b/lib/libform/type_numeric.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_numeric.c,v 1.5 2003/03/09 00:57:20 lukem Exp $ */ +/* $NetBSD: type_numeric.c,v 1.6 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_numeric.c,v 1.5 2003/03/09 00:57:20 lukem Exp $"); +__RCSID("$NetBSD: type_numeric.c,v 1.6 2004/04/23 02:58:27 simonb Exp $"); #include <stdlib.h> #include <string.h> @@ -70,7 +70,7 @@ create_numeric_args(va_list *args) } /* - * Copy the the numeric argument structure. + * Copy the numeric argument structure. */ static char * copy_numeric_args(char *args) diff --git a/lib/libform/type_regex.c b/lib/libform/type_regex.c index b85afa455bd..ae152dbc095 100644 --- a/lib/libform/type_regex.c +++ b/lib/libform/type_regex.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_regex.c,v 1.5 2003/03/09 00:57:20 lukem Exp $ */ +/* $NetBSD: type_regex.c,v 1.6 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_regex.c,v 1.5 2003/03/09 00:57:20 lukem Exp $"); +__RCSID("$NetBSD: type_regex.c,v 1.6 2004/04/23 02:58:27 simonb Exp $"); #include <stdlib.h> #include <sys/types.h> @@ -74,7 +74,7 @@ create_regex_args(va_list *args) } /* - * Copy the the regex argument structure. + * Copy the regex argument structure. */ static char * copy_regex_args(char *args) diff --git a/lib/libpthread/arch/i386/pthread_switch.S b/lib/libpthread/arch/i386/pthread_switch.S index b1d626783fd..0edf27450b7 100644 --- a/lib/libpthread/arch/i386/pthread_switch.S +++ b/lib/libpthread/arch/i386/pthread_switch.S @@ -1,4 +1,4 @@ -/* $NetBSD: pthread_switch.S,v 1.7 2003/10/30 13:56:37 yamt Exp $ */ +/* $NetBSD: pthread_switch.S,v 1.8 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -82,7 +82,7 @@ * thread is stored near the top of the stack. When the kernel * preempts a thread, it stores the ucontext_t just above the current * top-of-stack and passes the upcall handler the pointer to the - * ucontext_t, and the upcall handler stores it in the the pt_uc field + * ucontext_t, and the upcall handler stores it in the pt_uc field * of the thread structure. When user-level code voluntairly switches * from one thread to another, the ucontext_t is just below the top of * the stack, and we impose a limit on the amount of stack space above diff --git a/lib/libpthread/arch/m68k/pthread_switch.S b/lib/libpthread/arch/m68k/pthread_switch.S index 0ad557cb2c8..933ff317522 100644 --- a/lib/libpthread/arch/m68k/pthread_switch.S +++ b/lib/libpthread/arch/m68k/pthread_switch.S @@ -1,4 +1,4 @@ -/* $NetBSD: pthread_switch.S,v 1.6 2003/09/17 20:08:07 cl Exp $ */ +/* $NetBSD: pthread_switch.S,v 1.7 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -85,7 +85,7 @@ * thread is stored near the top of the stack. When the kernel * preempts a thread, it stores the ucontext_t just above the current * top-of-stack and passes the upcall handler the pointer to the - * ucontext_t, and the upcall handler stores it in the the pt_uc field + * ucontext_t, and the upcall handler stores it in the pt_uc field * of the thread structure. When user-level code voluntairly switches * from one thread to another, the ucontext_t is just below the top of * the stack, and we impose a limit on the amount of stack space above diff --git a/lib/libpthread/arch/x86_64/pthread_switch.S b/lib/libpthread/arch/x86_64/pthread_switch.S index 708c01d08df..6e9c0864f53 100644 --- a/lib/libpthread/arch/x86_64/pthread_switch.S +++ b/lib/libpthread/arch/x86_64/pthread_switch.S @@ -1,4 +1,4 @@ -/* $NetBSD: pthread_switch.S,v 1.9 2003/11/08 21:46:42 fvdl Exp $ */ +/* $NetBSD: pthread_switch.S,v 1.10 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -84,7 +84,7 @@ * thread is stored near the top of the stack. When the kernel * preempts a thread, it stores the ucontext_t just above the current * top-of-stack and passes the upcall handler the pointer to the - * ucontext_t, and the upcall handler stores it in the the pt_uc field + * ucontext_t, and the upcall handler stores it in the pt_uc field * of the thread structure. When user-level code voluntairly switches * from one thread to another, the ucontext_t is just below the top of * the stack, and we impose a limit on the amount of stack space above diff --git a/lib/libterm/termcap.3 b/lib/libterm/termcap.3 index 2fe8c86aad2..8f097c8cf5f 100644 --- a/lib/libterm/termcap.3 +++ b/lib/libterm/termcap.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: termcap.3,v 1.29 2003/08/07 16:44:56 agc Exp $ +.\" $NetBSD: termcap.3,v 1.30 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -442,7 +442,7 @@ The .Fn t_setinfo function allows the termcap entry contained in the .Fa entry -string to be inserted into the the +string to be inserted into the .Fa info structure. Memory sufficient to hold the contents of diff --git a/sbin/mount_ntfs/mount_ntfs.8 b/sbin/mount_ntfs/mount_ntfs.8 index 8b95335e7cb..07137c2fcc9 100644 --- a/sbin/mount_ntfs/mount_ntfs.8 +++ b/sbin/mount_ntfs/mount_ntfs.8 @@ -1,4 +1,4 @@ -.\" $NetBSD: mount_ntfs.8,v 1.15 2003/05/20 10:18:50 wiz Exp $ +.\" $NetBSD: mount_ntfs.8,v 1.16 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 1993,1994 Christopher G. Demetriou .\" Copyright (c) 1999 Semen Ustimenko @@ -180,7 +180,7 @@ offset should be '63' on i386 (see .Xr mbrlabel 8 could help you to set up the disk label correctly. .Pp -If the the NTFS partition is marked as +If the NTFS partition is marked as .Ql dynamic under Microsoft Windows XP, it won't be possible to access it under diff --git a/share/doc/papers/pulldown/1.t b/share/doc/papers/pulldown/1.t index d5e09791bdb..75612d05563 100644 --- a/share/doc/papers/pulldown/1.t +++ b/share/doc/papers/pulldown/1.t @@ -1,4 +1,4 @@ -.\" $Id: 1.t,v 1.1 2001/07/04 05:29:25 itojun Exp $ +.\" $Id: 1.t,v 1.2 2004/04/23 02:58:27 simonb Exp $ .\" .\".ds RH 4.4BSD incompatibility with IPv6/IPsec packet processing .NH 1 @@ -52,7 +52,7 @@ bytes in the packet are placed in the continuous memory region. After a call to .I m_pullup, -the caller can safely access the the first +the caller can safely access the first .I len bytes of the packet, assuming that they are continuous. The caller can, for example, safely use pointer variables into diff --git a/share/man/man9/bus_dma.9 b/share/man/man9/bus_dma.9 index 594c1f0416e..23320dcc487 100644 --- a/share/man/man9/bus_dma.9 +++ b/share/man/man9/bus_dma.9 @@ -1,4 +1,4 @@ -.\" $NetBSD: bus_dma.9,v 1.30 2003/06/30 12:10:40 wiz Exp $ +.\" $NetBSD: bus_dma.9,v 1.31 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 1996, 1997, 1998, 2001 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -447,7 +447,7 @@ for more information on this subject. .Pp On platforms which implement a weak memory access ordering model, .Fn bus_dmamap_sync -will always cause the the appropriate memory barriers to be issued. +will always cause the appropriate memory barriers to be issued. .Pp This function exists to ensure that the host and the device have a consistent view of a range of DMA memory, before and after diff --git a/share/man/man9/kthread.9 b/share/man/man9/kthread.9 index db6911120d5..9b8d1397150 100644 --- a/share/man/man9/kthread.9 +++ b/share/man/man9/kthread.9 @@ -1,4 +1,4 @@ -.\" $NetBSD: kthread.9,v 1.11 2003/04/16 13:35:30 wiz Exp $ +.\" $NetBSD: kthread.9,v 1.12 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 2000 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -62,7 +62,7 @@ The VM space and limits are shared with proc0 (usually swapper). .It Fn kthread_create1 "void (*func)(void *)" "void *arg" "struct proc **newpp" "const char *fmt" "..." Fork a kernel thread. .Fa newpp -is a pointer the the new proc structure for the kernel thread. +is a pointer the new proc structure for the kernel thread. The function .Fa func is called with arguments diff --git a/share/man/man9/pmap.9 b/share/man/man9/pmap.9 index bf93e4225f7..af98d398172 100644 --- a/share/man/man9/pmap.9 +++ b/share/man/man9/pmap.9 @@ -1,4 +1,4 @@ -.\" $NetBSD: pmap.9,v 1.25 2004/01/20 10:40:03 pooka Exp $ +.\" $NetBSD: pmap.9,v 1.26 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 2000, 2001, 2002 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -721,7 +721,7 @@ In this case, the call may be deleted using a C pre-processor macro in .It void Fn "pmap_activate" "struct lwp *l" Activate the physical map used by the process behind lwp .Fa l . -This is called by the virtual memory system when the the +This is called by the virtual memory system when the virtual memory context for a process is changed, and is also often used by machine-dependent context switch code to program the memory management hardware with the process's page table diff --git a/share/man/man9/rssadapt.9 b/share/man/man9/rssadapt.9 index 8ef3d574510..d9e888a5ad8 100644 --- a/share/man/man9/rssadapt.9 +++ b/share/man/man9/rssadapt.9 @@ -1,4 +1,4 @@ -.\" $NetBSD: rssadapt.9,v 1.1 2004/03/29 04:14:04 dyoung Exp $ +.\" $NetBSD: rssadapt.9,v 1.2 2004/04/23 02:58:28 simonb Exp $ .\" .\" Copyright (c) 2004 David Young. All rights reserved. .\" @@ -218,8 +218,7 @@ The table is indexed by packet size, .Va L , and a data rate, .Va R , -to find out the the minimum exponential-average RSS that a node -must show before +to find out the minimum exponential-average RSS that a node must show before .Nm will indicate that a packet .Va L diff --git a/share/man/man9/vnodeops.9 b/share/man/man9/vnodeops.9 index a272e9d31ae..f617b72dd06 100644 --- a/share/man/man9/vnodeops.9 +++ b/share/man/man9/vnodeops.9 @@ -1,4 +1,4 @@ -.\" $NetBSD: vnodeops.9,v 1.28 2004/01/25 18:06:48 hannken Exp $ +.\" $NetBSD: vnodeops.9,v 1.29 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 2001 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -861,7 +861,7 @@ is the locked node of the directory to create the new link and is the vnode of the file to be linked. The argument .Fa cnp -is the pathname component of the the new link. +is the pathname component of the new link. If the operation is successful zero is returned, otherwise an error code is returned. The directory vnode diff --git a/sys/altq/altq_cbq.c b/sys/altq/altq_cbq.c index f129e7bc0b6..9825ed4c62c 100644 --- a/sys/altq/altq_cbq.c +++ b/sys/altq/altq_cbq.c @@ -1,4 +1,4 @@ -/* $NetBSD: altq_cbq.c,v 1.9 2004/02/24 15:22:01 wiz Exp $ */ +/* $NetBSD: altq_cbq.c,v 1.10 2004/04/23 02:58:28 simonb Exp $ */ /* $KAME: altq_cbq.c,v 1.11 2002/10/04 14:24:09 kjc Exp $ */ /* @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: altq_cbq.c,v 1.9 2004/02/24 15:22:01 wiz Exp $"); +__KERNEL_RCSID(0, "$NetBSD: altq_cbq.c,v 1.10 2004/04/23 02:58:28 simonb Exp $"); #if defined(__FreeBSD__) || defined(__NetBSD__) #include "opt_altq.h" @@ -194,8 +194,8 @@ cbq_modify_class(acp) * * This function create a new traffic class in the CBQ class hierarchy of * given parameters. The class that created is either the root, default, - * or a new dynamic class. If CBQ is not initilaized, the the root class - * will be created. + * or a new dynamic class. If CBQ is not initilaized, the root class will + * be created. */ static int cbq_class_create(cbqp, acp, parent, borrow) diff --git a/sys/arch/acorn26/acorn26/pmap.c b/sys/arch/acorn26/acorn26/pmap.c index c810464f8c1..009b2465412 100644 --- a/sys/arch/acorn26/acorn26/pmap.c +++ b/sys/arch/acorn26/acorn26/pmap.c @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.c,v 1.10 2003/10/26 13:17:50 jdolecek Exp $ */ +/* $NetBSD: pmap.c,v 1.11 2004/04/23 02:58:28 simonb Exp $ */ /*- * Copyright (c) 1997, 1998, 2000 Ben Harris * All rights reserved. @@ -33,7 +33,7 @@ * The MMU on ARM2 and ARM3 systems is an Acorn custom chip called MEMC * (Anna to her friends). Each MEMC can handle up to 4MB of local DRAM, * split into 128 pages. Thus, a system with 16MB of RAM will have four - * MEMCs co-operating to run it. In addition the the MMU, the master MEMC + * MEMCs co-operating to run it. In addition the MMU, the master MEMC * in a system handles video and sound DMA, the system clocks and the * address decoding necessary to control accesses to the I/O system, ROMs * and VIDC. @@ -102,7 +102,7 @@ #include <sys/param.h> -__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.10 2003/10/26 13:17:50 jdolecek Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.11 2004/04/23 02:58:28 simonb Exp $"); #include <sys/kernel.h> /* for cold */ #include <sys/malloc.h> diff --git a/sys/arch/evbarm/iq80310/i80312_mainbus.c b/sys/arch/evbarm/iq80310/i80312_mainbus.c index 1359307e6fc..e1081b62529 100644 --- a/sys/arch/evbarm/iq80310/i80312_mainbus.c +++ b/sys/arch/evbarm/iq80310/i80312_mainbus.c @@ -1,4 +1,4 @@ -/* $NetBSD: i80312_mainbus.c,v 1.11 2003/07/15 00:25:02 lukem Exp $ */ +/* $NetBSD: i80312_mainbus.c,v 1.12 2004/04/23 02:58:28 simonb Exp $ */ /* * Copyright (c) 2001, 2002 Wasabi Systems, Inc. @@ -42,7 +42,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: i80312_mainbus.c,v 1.11 2003/07/15 00:25:02 lukem Exp $"); +__KERNEL_RCSID(0, "$NetBSD: i80312_mainbus.c,v 1.12 2004/04/23 02:58:28 simonb Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -118,8 +118,7 @@ i80312_mainbus_attach(struct device *parent, struct device *self, void *aux) sc->sc_dev.dv_xname); /* - * We have mapped the the PCI I/O windows in the early - * bootstrap phase. + * We have mapped the PCI I/O windows in the early bootstrap phase. */ sc->sc_piow_vaddr = IQ80310_PIOW_VBASE; sc->sc_siow_vaddr = IQ80310_SIOW_VBASE; diff --git a/sys/arch/evbarm/iq80321/i80321_mainbus.c b/sys/arch/evbarm/iq80321/i80321_mainbus.c index b3bbf44c71e..8e1eb70edba 100644 --- a/sys/arch/evbarm/iq80321/i80321_mainbus.c +++ b/sys/arch/evbarm/iq80321/i80321_mainbus.c @@ -1,4 +1,4 @@ -/* $NetBSD: i80321_mainbus.c,v 1.13 2003/12/17 22:03:24 abs Exp $ */ +/* $NetBSD: i80321_mainbus.c,v 1.14 2004/04/23 02:58:28 simonb Exp $ */ /* * Copyright (c) 2001, 2002 Wasabi Systems, Inc. @@ -42,7 +42,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: i80321_mainbus.c,v 1.13 2003/12/17 22:03:24 abs Exp $"); +__KERNEL_RCSID(0, "$NetBSD: i80321_mainbus.c,v 1.14 2004/04/23 02:58:28 simonb Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -124,8 +124,7 @@ i80321_mainbus_attach(struct device *parent, struct device *self, void *aux) sc->sc_dev.dv_xname); /* - * We have mapped the the PCI I/O windows in the early - * bootstrap phase. + * We have mapped the PCI I/O windows in the early bootstrap phase. */ sc->sc_iow_vaddr = IQ80321_IOW_VBASE; diff --git a/sys/arch/hp700/hp700/locore.S b/sys/arch/hp700/hp700/locore.S index aa877f9652c..ecc63171d09 100644 --- a/sys/arch/hp700/hp700/locore.S +++ b/sys/arch/hp700/hp700/locore.S @@ -1,4 +1,4 @@ -/* $NetBSD: locore.S,v 1.6 2004/01/05 08:59:55 jdolecek Exp $ */ +/* $NetBSD: locore.S,v 1.7 2004/04/23 02:58:28 simonb Exp $ */ /* $OpenBSD: locore.S,v 1.46 2001/09/20 18:33:03 mickey Exp $ */ @@ -898,7 +898,7 @@ sw_qnempty: copy %arg1, %t2 /* * Either we must be switching to the same LWP, or - * the the new LWP's kernel stack must be reasonable. + * the new LWP's kernel stack must be reasonable. */ comb,=,n %arg1, %arg2, kstack_ok ldw L_MD_REGS(%arg1), %t1 diff --git a/sys/arch/sparc64/dev/iommureg.h b/sys/arch/sparc64/dev/iommureg.h index 92a34d0a4f3..258d5753b17 100644 --- a/sys/arch/sparc64/dev/iommureg.h +++ b/sys/arch/sparc64/dev/iommureg.h @@ -1,4 +1,4 @@ -/* $NetBSD: iommureg.h,v 1.11 2003/10/11 20:53:14 petrov Exp $ */ +/* $NetBSD: iommureg.h,v 1.12 2004/04/23 02:58:28 simonb Exp $ */ /* * Copyright (c) 1992, 1993 @@ -118,7 +118,7 @@ struct iommu_strbuf { * Unfortunately, sabres on UltraSPARC IIi and IIe processors does not use * this scheme to determine the IOVA base address. Instead, bits 31-29 are * used to check against the Target Address Space register in the IIi and - * the the IOMMU is used if they hit. God knows what goes on in the IIe. + * the IOMMU is used if they hit. God knows what goes on in the IIe. * */ diff --git a/sys/arch/sun2/sun2/control.h b/sys/arch/sun2/sun2/control.h index d1c76c9e532..0ae944e4438 100644 --- a/sys/arch/sun2/sun2/control.h +++ b/sys/arch/sun2/sun2/control.h @@ -1,4 +1,4 @@ -/* $NetBSD: control.h,v 1.3 2001/06/14 16:36:46 fredette Exp $ */ +/* $NetBSD: control.h,v 1.4 2004/04/23 02:58:28 simonb Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -43,7 +43,7 @@ /* * On the Sun3, the 32 bytes of IDPROM are at consecutive addresses in * control space starting at 0x00000000. On the Sun2, the 32 bytes of - * IDPROM are at offset 8 in each of the the first 32 pages of control + * IDPROM are at offset 8 in each of the first 32 pages of control * space, i.e., on the Sun2, in control space the page frame is used * as an index, and the page offset bits are used to select something * to use that index with. I'm not sure which I like better. diff --git a/sys/arch/x68k/dev/ite.c b/sys/arch/x68k/dev/ite.c index 97393fbdcd6..dc4094b5fff 100644 --- a/sys/arch/x68k/dev/ite.c +++ b/sys/arch/x68k/dev/ite.c @@ -1,4 +1,4 @@ -/* $NetBSD: ite.c,v 1.36 2003/11/01 12:56:32 jdolecek Exp $ */ +/* $NetBSD: ite.c,v 1.37 2004/04/23 02:58:28 simonb Exp $ */ /* * Copyright (c) 1990 The Regents of the University of California. @@ -83,7 +83,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ite.c,v 1.36 2003/11/01 12:56:32 jdolecek Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ite.c,v 1.37 2004/04/23 02:58:28 simonb Exp $"); #include "ite.h" #if NITE > 0 @@ -391,7 +391,7 @@ iteoff(dev, flag) /* * XXX When the system is rebooted with "reboot", init(8) * kills the last process to have the console open. - * If we don't revent the the ITE_ACTIVE bit from being + * If we don't revent the ITE_ACTIVE bit from being * cleared, we will never see messages printed during * the process of rebooting. */ diff --git a/sys/dev/acpi/acpica/Subsystem/nsalloc.c b/sys/dev/acpi/acpica/Subsystem/nsalloc.c index 0bf9802358e..823e3f627ee 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsalloc.c +++ b/sys/dev/acpi/acpica/Subsystem/nsalloc.c @@ -116,7 +116,7 @@ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: nsalloc.c,v 1.13 2004/02/14 16:57:24 kochi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: nsalloc.c,v 1.14 2004/04/23 02:58:29 simonb Exp $"); #define __NSALLOC_C__ @@ -358,7 +358,7 @@ AcpiNsInstallNode ( { #ifdef ACPI_ALPHABETIC_NAMESPACE /* - * Walk the list whilst searching for the the correct + * Walk the list whilst searching for the correct * alphabetic placement. */ PreviousChildNode = NULL; diff --git a/sys/dev/i2o/iopl.c b/sys/dev/i2o/iopl.c index b75cb810291..362ee6bfd26 100644 --- a/sys/dev/i2o/iopl.c +++ b/sys/dev/i2o/iopl.c @@ -1,4 +1,4 @@ -/* $NetBSD: iopl.c,v 1.12 2004/04/22 00:17:11 itojun Exp $ */ +/* $NetBSD: iopl.c,v 1.13 2004/04/23 02:58:29 simonb Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -46,7 +46,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: iopl.c,v 1.12 2004/04/22 00:17:11 itojun Exp $"); +__KERNEL_RCSID(0, "$NetBSD: iopl.c,v 1.13 2004/04/23 02:58:29 simonb Exp $"); #include "opt_i2o.h" #include "opt_inet.h" @@ -334,7 +334,7 @@ iopl_attach(struct device *parent, struct device *self, void *aux) iop_initiator_register(iop, &sc->sc_ii_tx); /* - * Determine some of the the capabilities of the interface - in + * Determine some of the capabilities of the interface - in * particular, the maximum number of segments per S/G list, and how * much buffer context we'll need to transmit frames (some adapters * may need the destination address in the buffer context). diff --git a/sys/dev/pci/bktr/bktr_card.c b/sys/dev/pci/bktr/bktr_card.c index dfed7418755..28b9b5e84fb 100644 --- a/sys/dev/pci/bktr/bktr_card.c +++ b/sys/dev/pci/bktr/bktr_card.c @@ -1,6 +1,6 @@ /* $SourceForge: bktr_card.c,v 1.3 2003/03/11 23:11:21 thomasklausner Exp $ */ -/* $NetBSD: bktr_card.c,v 1.16 2003/10/30 01:58:17 simonb Exp $ */ +/* $NetBSD: bktr_card.c,v 1.17 2004/04/23 02:58:29 simonb Exp $ */ /* $FreeBSD: src/sys/dev/bktr/bktr_card.c,v 1.16 2000/10/31 13:09:56 roger Exp$ */ /* @@ -51,7 +51,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: bktr_card.c,v 1.16 2003/10/30 01:58:17 simonb Exp $"); +__KERNEL_RCSID(0, "$NetBSD: bktr_card.c,v 1.17 2004/04/23 02:58:29 simonb Exp $"); #include "opt_bktr.h" /* Include any kernel config options */ @@ -503,7 +503,7 @@ static int locate_eeprom_address(bktr_ptr_t bktr) { * * However some makes of card (eg Hauppauge) come with a configuration eeprom * which tells us the make of the card. Most eeproms also tell us the - * tuner type and other features of the the cards. + * tuner type and other features of the cards. * * The current probe code works as follows * A) If the card uses a Bt878/879: diff --git a/sys/dev/podulebus/if_eireg.h b/sys/dev/podulebus/if_eireg.h index 54d5fbd596f..43b56d1a7cd 100644 --- a/sys/dev/podulebus/if_eireg.h +++ b/sys/dev/podulebus/if_eireg.h @@ -1,4 +1,4 @@ -/* $NetBSD: if_eireg.h,v 1.2 2001/12/21 22:33:28 bjh21 Exp $ */ +/* $NetBSD: if_eireg.h,v 1.3 2004/04/23 02:58:29 simonb Exp $ */ /* * 2000 Ben Harris @@ -52,10 +52,9 @@ #define EI_SCP_ADDR IE_SCP_ADDR % EI_MEMSIZE /* - * The ROM on the Ether1 is a bit oddly wired, in that the interrupt - * line is wired up as the high-order address line, so as to allow the - * interrupt status bit the the first byte to reflect the actual - * interrupt status. + * The ROM on the Ether1 is a bit oddly wired, in that the interrupt line + * is wired up as the high-order address line, so as to allow the interrupt + * status bit the first byte to reflect the actual interrupt status. */ #define EI_ROMSIZE 0x20 diff --git a/sys/kern/init_sysctl.c b/sys/kern/init_sysctl.c index 84624ac0cec..73c8a20c20b 100644 --- a/sys/kern/init_sysctl.c +++ b/sys/kern/init_sysctl.c @@ -1,4 +1,4 @@ -/* $NetBSD: init_sysctl.c,v 1.27 2004/04/16 13:25:40 atatat Exp $ */ +/* $NetBSD: init_sysctl.c,v 1.28 2004/04/23 02:58:29 simonb Exp $ */ /*- * Copyright (c) 2003 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: init_sysctl.c,v 1.27 2004/04/16 13:25:40 atatat Exp $"); +__KERNEL_RCSID(0, "$NetBSD: init_sysctl.c,v 1.28 2004/04/23 02:58:29 simonb Exp $"); #include "opt_sysv.h" #include "opt_multiprocessor.h" @@ -1228,8 +1228,8 @@ sysctl_kern_autonice(SYSCTLFN_ARGS) /* * sysctl helper routine for kern.msgbufsize and kern.msgbuf. for the - * former it merely checks the the message buffer is set up. for the - * latter, it also copies out the data if necessary. + * former it merely checks the message buffer is set up. for the latter, + * it also copies out the data if necessary. */ static int sysctl_msgbuf(SYSCTLFN_ARGS) diff --git a/sys/kern/kern_malloc_debug.c b/sys/kern/kern_malloc_debug.c index e1a56859344..d2d0f618fa7 100644 --- a/sys/kern/kern_malloc_debug.c +++ b/sys/kern/kern_malloc_debug.c @@ -1,4 +1,4 @@ -/* $NetBSD: kern_malloc_debug.c,v 1.11 2003/10/24 00:53:43 yamt Exp $ */ +/* $NetBSD: kern_malloc_debug.c,v 1.12 2004/04/23 02:58:29 simonb Exp $ */ /* * Copyright (c) 1999, 2000 Artur Grabowski <art@openbsd.org> @@ -41,7 +41,7 @@ * more types will also add to the complexity of the code. * * This is really simple. Every malloc() allocates two virtual pages, - * the second page is left unmapped, and the the value returned is aligned + * the second page is left unmapped, and the value returned is aligned * so that it ends at (or very close to) the page boundary to catch overflows. * Every free() changes the protection of the first page to VM_PROT_NONE so * that we can catch any dangling writes to it. @@ -56,7 +56,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: kern_malloc_debug.c,v 1.11 2003/10/24 00:53:43 yamt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kern_malloc_debug.c,v 1.12 2004/04/23 02:58:29 simonb Exp $"); #include <sys/param.h> #include <sys/proc.h> diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c index 99dfc5a9f4c..8ae3fce0da8 100644 --- a/sys/net/if_vlan.c +++ b/sys/net/if_vlan.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_vlan.c,v 1.39 2004/04/21 18:40:41 itojun Exp $ */ +/* $NetBSD: if_vlan.c,v 1.40 2004/04/23 02:58:29 simonb Exp $ */ /*- * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc. @@ -85,7 +85,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_vlan.c,v 1.39 2004/04/21 18:40:41 itojun Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_vlan.c,v 1.40 2004/04/23 02:58:29 simonb Exp $"); #include "opt_inet.h" #include "bpfilter.h" @@ -833,8 +833,8 @@ vlan_start(struct ifnet *ifp) /* * Given an Ethernet frame, find a valid vlan interface corresponding to the - * given source interface and tag, then run the the real packet through - * the parent's input routine. + * given source interface and tag, then run the real packet through the + * parent's input routine. */ void vlan_input(struct ifnet *ifp, struct mbuf *m) diff --git a/usr.bin/cksum/cksum.1 b/usr.bin/cksum/cksum.1 index 53e27ddb487..a623a8fe252 100644 --- a/usr.bin/cksum/cksum.1 +++ b/usr.bin/cksum/cksum.1 @@ -1,4 +1,4 @@ -.\" $NetBSD: cksum.1,v 1.23 2003/08/07 11:13:20 agc Exp $ +.\" $NetBSD: cksum.1,v 1.24 2004/04/23 02:58:29 simonb Exp $ .\" .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -215,7 +215,7 @@ Run a built-in message digest time trial. Run a built-in message digest test script. The tests that are run are supposed to encompass all the various tests in the suites that -accompany the algorithms' descriptions with the exception of the the +accompany the algorithms' descriptions with the exception of the last test for the SHA-1 algorithm and the RIPEMD-160 algorithm. The last test for these is one million copies of the lower letter a. diff --git a/usr.bin/m4/gnum4.c b/usr.bin/m4/gnum4.c index 2170dc9b025..11be02d26e2 100644 --- a/usr.bin/m4/gnum4.c +++ b/usr.bin/m4/gnum4.c @@ -1,4 +1,4 @@ -/* $NetBSD: gnum4.c,v 1.2 2002/01/21 21:49:57 tv Exp $ */ +/* $NetBSD: gnum4.c,v 1.3 2004/04/23 02:58:29 simonb Exp $ */ /* $OpenBSD: gnum4.c,v 1.15 2001/10/13 20:18:48 espie Exp $ */ /* @@ -50,7 +50,7 @@ int mimic_gnu = 0; /* * Support for include path search - * First search in the the current directory. + * First search in the current directory. * If not found, and the path is not absolute, include path kicks in. * First, -I options, in the order found on the command line. * Then M4PATH env variable diff --git a/usr.bin/pmap/pmap.h b/usr.bin/pmap/pmap.h index 0062ff32cb8..b969054d52f 100644 --- a/usr.bin/pmap/pmap.h +++ b/usr.bin/pmap/pmap.h @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.h,v 1.4 2004/01/31 18:25:27 atatat Exp $ */ +/* $NetBSD: pmap.h,v 1.5 2004/04/23 02:58:29 simonb Exp $ */ /* * Copyright (c) 2002, 2003 The NetBSD Foundation, Inc. @@ -40,7 +40,7 @@ * only pull in the headers once. if we attempt to pull them in * again, we get namespace collisions on some structures, and we don't * want to redefine some of them since it will affect the layout of - * the the struct kbit. + * the struct kbit. */ #ifndef PMAP_HEADERS diff --git a/usr.bin/rpcinfo/rpcinfo.c b/usr.bin/rpcinfo/rpcinfo.c index 123a0c86d0b..07e992093b1 100644 --- a/usr.bin/rpcinfo/rpcinfo.c +++ b/usr.bin/rpcinfo/rpcinfo.c @@ -1,4 +1,4 @@ -/* $NetBSD: rpcinfo.c,v 1.19 2004/01/05 23:23:36 jmmv Exp $ */ +/* $NetBSD: rpcinfo.c,v 1.20 2004/04/23 02:58:29 simonb Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -43,7 +43,7 @@ static char sccsid[] = "@(#)rpcinfo.c 1.16 89/04/05 Copyr 1986 Sun Micro"; /* * rpcinfo: ping a particular rpc program - * or dump the the registered programs on the remote machine. + * or dump the registered programs on the remote machine. */ /* diff --git a/usr.bin/vi/vi/v_scroll.c b/usr.bin/vi/vi/v_scroll.c index 730607eb921..dea83e7f32a 100644 --- a/usr.bin/vi/vi/v_scroll.c +++ b/usr.bin/vi/vi/v_scroll.c @@ -1,4 +1,4 @@ -/* $NetBSD: v_scroll.c,v 1.9 2002/04/09 01:47:36 thorpej Exp $ */ +/* $NetBSD: v_scroll.c,v 1.10 2004/04/23 02:58:29 simonb Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 @@ -16,7 +16,7 @@ #if 0 static const char sccsid[] = "@(#)v_scroll.c 10.9 (Berkeley) 4/27/96"; #else -__RCSID("$NetBSD: v_scroll.c,v 1.9 2002/04/09 01:47:36 thorpej Exp $"); +__RCSID("$NetBSD: v_scroll.c,v 1.10 2004/04/23 02:58:29 simonb Exp $"); #endif #endif /* not lint */ @@ -390,7 +390,7 @@ v_pagedown(sp, vp) * !!! * Historic vi did not move to the SOF if the screen couldn't move, i.e. * if SOF was already displayed on the screen. This implementation does - * move to SOF in that case, making ^B more like the the historic ^U. + * move to SOF in that case, making ^B more like the historic ^U. * * PUBLIC: int v_pageup __P((SCR *, VICMD *)); */ diff --git a/usr.sbin/mopd/mopd/mopd.8 b/usr.sbin/mopd/mopd/mopd.8 index 8c94d1fbbee..346fe51179a 100644 --- a/usr.sbin/mopd/mopd/mopd.8 +++ b/usr.sbin/mopd/mopd/mopd.8 @@ -1,4 +1,4 @@ -.\" $NetBSD: mopd.8,v 1.10 2004/01/23 20:55:19 wiz Exp $ +.\" $NetBSD: mopd.8,v 1.11 2004/04/23 02:58:30 simonb Exp $ .\" .\" Copyright (c) 1993-96 Mats O Jansson. All rights reserved. .\" @@ -111,7 +111,7 @@ to automatically appends an upper case .Pa .SYS to the filename provided by the client. -The typical client sends the the requested file name in upper case. +The typical client sends the requested file name in upper case. .Sh SEE ALSO .Xr mopchk 1 , .Xr mopcopy 1 , diff --git a/usr.sbin/moused/moused.c b/usr.sbin/moused/moused.c index 8721820cdd1..84db4721cde 100644 --- a/usr.sbin/moused/moused.c +++ b/usr.sbin/moused/moused.c @@ -1,4 +1,4 @@ -/* $NetBSD: moused.c,v 1.12 2003/07/16 06:33:11 itojun Exp $ */ +/* $NetBSD: moused.c,v 1.13 2004/04/23 02:58:30 simonb Exp $ */ /** ** Copyright (c) 1995 Michael Smith, All rights reserved. ** @@ -48,7 +48,7 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: moused.c,v 1.12 2003/07/16 06:33:11 itojun Exp $"); +__RCSID("$NetBSD: moused.c,v 1.13 2004/04/23 02:58:30 simonb Exp $"); #endif /* not lint */ #include <ctype.h> @@ -816,7 +816,7 @@ main(int argc, char *argv[]) /* * We cannot continue because of error. Exit if the * program has not become a daemon. Otherwise, block - * until the the user corrects the problem and issues SIGHUP. + * until the user corrects the problem and issues SIGHUP. */ if (!background) exit(1); diff --git a/usr.sbin/pkg_install/create/pkg_create.1 b/usr.sbin/pkg_install/create/pkg_create.1 index e62c3e5c010..13dc302397b 100644 --- a/usr.sbin/pkg_install/create/pkg_create.1 +++ b/usr.sbin/pkg_install/create/pkg_create.1 @@ -1,4 +1,4 @@ -.\" $NetBSD: pkg_create.1,v 1.39 2003/09/08 09:11:12 wiz Exp $ +.\" $NetBSD: pkg_create.1,v 1.40 2004/04/23 02:58:30 simonb Exp $ .\" .\" FreeBSD install - a package for the installation and maintenance .\" of non-core utilities. @@ -288,7 +288,7 @@ Store the given file for later querying with the .Xr pkg_info 1 .Fl s flag. -The file is expected to contain the the size (in bytes) of all files of +The file is expected to contain the size (in bytes) of all files of this package added up and stored as a ASCII string, terminated by a newline. .It Fl t Ar template Use diff --git a/usr.sbin/sesd/getencstat/getencstat.8 b/usr.sbin/sesd/getencstat/getencstat.8 index f3e163f36bc..d9abcdc39ad 100644 --- a/usr.sbin/sesd/getencstat/getencstat.8 +++ b/usr.sbin/sesd/getencstat/getencstat.8 @@ -1,4 +1,4 @@ -.\" $NetBSD: getencstat.8,v 1.2 2002/01/19 11:45:02 wiz Exp $ +.\" $NetBSD: getencstat.8,v 1.3 2004/04/23 02:58:30 simonb Exp $ .\" $OpenBSD: $ .\" $FreeBSD: $ .\" @@ -47,7 +47,7 @@ .Nm gets summary and detailed SCSI Environmental Services (or SAF-TE) device enclosure status. The overall status is printed out. If the overall status -is considered okay, nothing else is printed out (unless the the +is considered okay, nothing else is printed out (unless the .Fl v option is used). .Pp diff --git a/usr.sbin/sup/source/supfilesrv.c b/usr.sbin/sup/source/supfilesrv.c index 9467dd2a69a..e204a1ec9ab 100644 --- a/usr.sbin/sup/source/supfilesrv.c +++ b/usr.sbin/sup/source/supfilesrv.c @@ -1,4 +1,4 @@ -/* $NetBSD: supfilesrv.c,v 1.28 2004/04/21 01:05:48 christos Exp $ */ +/* $NetBSD: supfilesrv.c,v 1.29 2004/04/23 02:58:30 simonb Exp $ */ /* * Copyright (c) 1992 Carnegie Mellon University @@ -103,7 +103,7 @@ * the local_file() call (when the file is local) at the same time the * crypt key is read. This change disallows non-local files for the * crypt key to plug a security hole involving the usage of the uid/gid - * of the crypt file to define who the the file server should run as. If + * of the crypt file to define who the file server should run as. If * the saved uid/gid are both valid, then the server will set its uid/gid * to these values. * [90/04/18 dlc] @@ -1820,7 +1820,7 @@ fmttime(time_t time) * Currently, the cases that we try to distinguish are RFS, AFS, NFS and * UFS, where the latter is considered a trusted file. We assume that the * caller has disabled link following and will detect an attempt to access - * a file through an RFS link, except in the case the the last component is + * a file through an RFS link, except in the case the last component is * an RFS link. With link following disabled, the last component itself is * interpreted as a regular file if it is really an RFS link, so we * disallow the RFS link identified by group "symlink" and mode "IEXEC by diff --git a/usr.sbin/sushi/functions.c b/usr.sbin/sushi/functions.c index 864feb1ff6b..df8b7ecaf0e 100644 --- a/usr.sbin/sushi/functions.c +++ b/usr.sbin/sushi/functions.c @@ -1,4 +1,4 @@ -/* $NetBSD: functions.c,v 1.8 2003/11/12 13:31:08 grant Exp $ */ +/* $NetBSD: functions.c,v 1.9 2004/04/23 02:58:30 simonb Exp $ */ /* * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -330,8 +330,8 @@ ftp_pkgcats(char *subdir) /* * Return patch where binary packages for this OS version/arch * are expected. If mirror is NULL, ftp.NetBSD.org is used. - * If it's set, it's assumed to be the URL where the the - * OS version dirs are, e.g. ftp://ftp.NetBSD.org/pub/NetBSD/packages. + * If it's set, it's assumed to be the URL where the OS version + * dirs are, e.g. ftp://ftp.NetBSD.org/pub/NetBSD/packages. * If $PKG_PATH is set, is returned unchanged, overriding everything. * In any case, a trailing '/' is *not* passed. * See also Appendix B of /usr/pkgsrc/Packages.txt. |
