diff options
author | 2002-12-09 00:45:33 +0000 | |
---|---|---|
committer | 2002-12-09 00:45:33 +0000 | |
commit | f986e4fc9b1204c56a7ddda3ffe947a9f7252cc4 (patch) | |
tree | 613eb3ef3cf06229bd0141537a549cd373ac2dc6 | |
parent | regen (diff) | |
download | wireguard-openbsd-f986e4fc9b1204c56a7ddda3ffe947a9f7252cc4.tar.xz wireguard-openbsd-f986e4fc9b1204c56a7ddda3ffe947a9f7252cc4.zip |
From Andrushock, s/sucess/success/g
38 files changed, 75 insertions, 72 deletions
diff --git a/gnu/egcs/gcc/java/verify.c b/gnu/egcs/gcc/java/verify.c index 2929d7e4b5a..12267928601 100644 --- a/gnu/egcs/gcc/java/verify.c +++ b/gnu/egcs/gcc/java/verify.c @@ -62,7 +62,7 @@ push_pending_label (target_label) /* Note that TARGET_LABEL is a possible successor instruction. Merge the type state etc. - Return NULL on sucess, or an error message on failure. */ + Return NULL on success, or an error message on failure. */ static const char * check_pending_block (target_label) @@ -340,7 +340,7 @@ start_pc_cmp (xp, yp) #define BCODE byte_ops /* Verify the bytecodes of the current method. - Return 1 on sucess, 0 on failure. */ + Return 1 on success, 0 on failure. */ int verify_jvm_instructions (jcf, byte_ops, length) JCF* jcf; diff --git a/gnu/usr.bin/binutils/bfd/doc/bfd.texinfo b/gnu/usr.bin/binutils/bfd/doc/bfd.texinfo index f0a18b7cf99..1318f5aac94 100644 --- a/gnu/usr.bin/binutils/bfd/doc/bfd.texinfo +++ b/gnu/usr.bin/binutils/bfd/doc/bfd.texinfo @@ -64,7 +64,7 @@ notice identical to this one except for the removal of this paragraph @tex \def\$#1${{#1}} % Kluge: collect RCS revision info without $...$ -\xdef\manvers{\$Revision: 1.4 $} % For use in headers, footers too +\xdef\manvers{\$Revision: 1.5 $} % For use in headers, footers too {\parskip=0pt \hfill Cygnus Support\par \hfill sac\@cygnus.com\par @@ -157,7 +157,7 @@ To use the library, include @file{bfd.h} and link with @file{libbfd.a}. BFD provides a common interface to the parts of an object file for a calling application. -When an application sucessfully opens a target file (object, archive, or +When an application successfully opens a target file (object, archive, or whatever), a pointer to an internal structure is returned. This pointer points to a structure called @code{bfd}, described in @file{bfd.h}. Our convention is to call this pointer a BFD, and diff --git a/gnu/usr.bin/binutils/gas/atof-generic.c b/gnu/usr.bin/binutils/gas/atof-generic.c index 1309566de0b..360807bb7d6 100644 --- a/gnu/usr.bin/binutils/gas/atof-generic.c +++ b/gnu/usr.bin/binutils/gas/atof-generic.c @@ -472,7 +472,7 @@ atof_generic (address_of_string_pointer, { /* * Compute the mantssa (& exponent) of the power of 10. - * If sucessful, then multiply the power of 10 by the digits + * If successful, then multiply the power of 10 by the digits * giving return_binary_mantissa and return_binary_exponent. */ diff --git a/gnu/usr.bin/binutils/gdb/ChangeLog-3.x b/gnu/usr.bin/binutils/gdb/ChangeLog-3.x index e8dbcd87bb0..fb1fd963ce7 100644 --- a/gnu/usr.bin/binutils/gdb/ChangeLog-3.x +++ b/gnu/usr.bin/binutils/gdb/ChangeLog-3.x @@ -3769,7 +3769,7 @@ Mon Dec 12 13:21:02 1988 Randall Smith (randy at gluteus.ai.mit.edu) * inflow.c (terminal_inferior): Checked *all* return codes from ioctl's and fcntl's in routine. - * inflow.c (terminal_inferior): Added check for sucess of + * inflow.c (terminal_inferior): Added check for success of TIOCSPGRP ioctl call. Just notifies if bad. * dbxread.c (symbol_file_command): Close was getting called twice; diff --git a/gnu/usr.bin/binutils/ld/ldemul.h b/gnu/usr.bin/binutils/ld/ldemul.h index 423a9d95527..00c361e0c84 100644 --- a/gnu/usr.bin/binutils/ld/ldemul.h +++ b/gnu/usr.bin/binutils/ld/ldemul.h @@ -116,7 +116,7 @@ typedef struct ld_emulation_xfer_struct { void (*set_symbols) PARAMS ((void)); /* Run to parse args which the base linker doesn't - understand. Return non zero on sucess. */ + understand. Return non zero on success. */ int (*parse_args) PARAMS ((int, char **)); /* Run to handle files which are not recognized as object files or diff --git a/gnu/usr.bin/cvs/src/filesubr.c b/gnu/usr.bin/cvs/src/filesubr.c index 28575a35269..6f7dfd08a82 100644 --- a/gnu/usr.bin/cvs/src/filesubr.c +++ b/gnu/usr.bin/cvs/src/filesubr.c @@ -767,7 +767,7 @@ FILE *cvs_temp_file (filename) if (fd == -1) fp = NULL; else if ((fp = CVS_FDOPEN (fd, "w+")) == NULL) { - /* attempt to close and unlink the file since mkstemp returned sucessfully and + /* attempt to close and unlink the file since mkstemp returned successfully and * we believe it's been created and opened */ int save_errno = errno; diff --git a/gnu/usr.bin/cvs/zlib/contrib/minizip/unzip.c b/gnu/usr.bin/cvs/zlib/contrib/minizip/unzip.c index ff71a474da1..06d5e24d450 100644 --- a/gnu/usr.bin/cvs/zlib/contrib/minizip/unzip.c +++ b/gnu/usr.bin/cvs/zlib/contrib/minizip/unzip.c @@ -129,7 +129,7 @@ typedef struct /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been sucessfully opened for reading. + IN assertion: the stream s has been successfully opened for reading. */ diff --git a/gnu/usr.bin/cvs/zlib/gzio.c b/gnu/usr.bin/cvs/zlib/gzio.c index b0418c3dccb..df5ef003bc9 100644 --- a/gnu/usr.bin/cvs/zlib/gzio.c +++ b/gnu/usr.bin/cvs/zlib/gzio.c @@ -5,7 +5,7 @@ * Compile this file with -DNO_DEFLATE to avoid the compression code. */ -/* @(#) $Id: gzio.c,v 1.1.1.2 2001/09/28 22:45:40 tholo Exp $ */ +/* @(#) $Id: gzio.c,v 1.2 2002/12/09 00:45:34 millert Exp $ */ #include <stdio.h> @@ -231,7 +231,7 @@ int ZEXPORT gzsetparams (file, level, strategy) /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been sucessfully opened for reading. + IN assertion: the stream s has been successfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -256,7 +256,7 @@ local int get_byte(s) mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created sucessfully; + IN assertion: the stream s has already been created successfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ diff --git a/gnu/usr.bin/gas/atof-generic.c b/gnu/usr.bin/gas/atof-generic.c index 3e5fbee3661..e86a4c41d11 100644 --- a/gnu/usr.bin/gas/atof-generic.c +++ b/gnu/usr.bin/gas/atof-generic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atof-generic.c,v 1.3 1999/06/16 15:19:46 deraadt Exp $ */ +/* $OpenBSD: atof-generic.c,v 1.4 2002/12/09 00:45:34 millert Exp $ */ /* atof_generic.c - turn a string of digits into a Flonum Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc. @@ -20,7 +20,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$OpenBSD: atof-generic.c,v 1.3 1999/06/16 15:19:46 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: atof-generic.c,v 1.4 2002/12/09 00:45:34 millert Exp $"; #endif #include <ctype.h> @@ -405,7 +405,7 @@ FLONUM_TYPE *address_of_generic_floating_point_number; { /* * Compute the mantssa (& exponent) of the power of 10. - * If sucessful, then multiply the power of 10 by the digits + * If successful, then multiply the power of 10 by the digits * giving return_binary_mantissa and return_binary_exponent. */ diff --git a/gnu/usr.bin/perl/Changes b/gnu/usr.bin/perl/Changes index 01b6eb77d2f..9eff108da00 100644 --- a/gnu/usr.bin/perl/Changes +++ b/gnu/usr.bin/perl/Changes @@ -4761,7 +4761,7 @@ ____________________________________________________________________________ ! lib/Test/Harness/t/test-harness.t ____________________________________________________________________________ [ 16953] By: ams on 2002/06/01 03:20:52 - Log: Remove $Id$ lines. + Log: Remove $Id: Changes,v 1.6 2002/10/27 22:25:13 millert Exp $ lines. Branch: perl ! ext/Storable/Makefile.PL ext/Storable/Storable.pm ! ext/Storable/Storable.xs ext/Storable/t/blessed.t @@ -17956,7 +17956,7 @@ ____________________________________________________________________________ Mark JP.t's data files as binary [ 15011] - Avoid $Id$ cleverness and just have a $VERSION. + Avoid $Id: Changes,v 1.6 2002/10/27 22:25:13 millert Exp $ cleverness and just have a $VERSION. Branch: perl !> ext/Encode/t/table.euc ext/Encode/t/table.ref ____________________________________________________________________________ @@ -19721,7 +19721,7 @@ ____________________________________________________________________________ !> ext/Encode/compile ____________________________________________________________________________ [ 15011] By: nick on 2002/03/04 17:29:54 - Log: Avoid $Id$ cleverness and just have a $VERSION. + Log: Avoid $Id: Changes,v 1.6 2002/10/27 22:25:13 millert Exp $ cleverness and just have a $VERSION. Branch: perlio ! ext/Encode/compile ____________________________________________________________________________ @@ -29693,7 +29693,7 @@ ____________________________________________________________________________ ! MANIFEST pod/perlmodlib.pod pod/perltoc.pod ____________________________________________________________________________ [ 13675] By: jhi on 2001/12/13 16:16:12 - Log: Subject: [PATCH ExtUtils::Install] Old RCS $Date$ tag + Log: Subject: [PATCH ExtUtils::Install] Old RCS $Date: 2002/10/27 22:25:13 $ tag From: Michael G Schwern <schwern@pobox.com> Date: Tue, 11 Dec 2001 23:17:32 -0500 Message-ID: <20011212041732.GS17250@blackrider> @@ -66521,7 +66521,7 @@ ____________________________________________________________________________ ! op.c t/op/attrs.t toke.c xsutils.c ____________________________________________________________________________ [ 8765] By: alanbur on 2001/02/10 23:11:19 - Log: Resync with parent (hopefully sucessfully this time) + Log: Resync with parent (hopefully successfully this time) Branch: maint-5.6/pureperl !> MANIFEST README.bs2000 README.hpux README.vmesa installhtml !> lib/Math/Complex.pm lib/Pod/Find.pm pod/buildtoc.PL diff --git a/gnu/usr.bin/perl/ext/IO/lib/IO/Socket.pm b/gnu/usr.bin/perl/ext/IO/lib/IO/Socket.pm index 8d36e8ee34f..f047eb152a4 100644 --- a/gnu/usr.bin/perl/ext/IO/lib/IO/Socket.pm +++ b/gnu/usr.bin/perl/ext/IO/lib/IO/Socket.pm @@ -219,7 +219,7 @@ sub send { ? send($sock, $_[1], $flags) : send($sock, $_[1], $flags, $peer); - # remember who we send to, if it was sucessful + # remember who we send to, if it was successful ${*$sock}{'io_socket_peername'} = $peer if(@_ == 4 && defined $r); diff --git a/gnu/usr.bin/perl/ext/PerlIO/via/via.pm b/gnu/usr.bin/perl/ext/PerlIO/via/via.pm index 39a5fab8607..8cf854b9af9 100644 --- a/gnu/usr.bin/perl/ext/PerlIO/via/via.pm +++ b/gnu/usr.bin/perl/ext/PerlIO/via/via.pm @@ -115,7 +115,7 @@ equal to $len). Optional. Default is to use FILL instead. =item $obj->WRITE($buffer,$fh) -Returns the number of octets from buffer that have been sucessfully written. +Returns the number of octets from buffer that have been successfully written. =item $obj->FILL($fh) @@ -141,7 +141,7 @@ Optional. Default to be determined. =item $obj->UNREAD($buffer,$fh) -Returns the number of octets from buffer that have been sucessfully +Returns the number of octets from buffer that have been successfully saved to be returned on future FILL/READ calls. Optional. Default is to push data into a temporary layer above this one. diff --git a/gnu/usr.bin/perl/lib/Net/FTP.pm b/gnu/usr.bin/perl/lib/Net/FTP.pm index 999889772dc..af27dc52b7d 100644 --- a/gnu/usr.bin/perl/lib/Net/FTP.pm +++ b/gnu/usr.bin/perl/lib/Net/FTP.pm @@ -625,7 +625,7 @@ sub mkdir $path = $ftp->_extract_path($path); } - # If the creation of the last element was not sucessful, see if we + # If the creation of the last element was not successful, see if we # can cd to it, if so then return path unless($ftp->ok) diff --git a/gnu/usr.bin/perl/lib/Net/NNTP.pm b/gnu/usr.bin/perl/lib/Net/NNTP.pm index 521ccf1e16f..0076405c269 100644 --- a/gnu/usr.bin/perl/lib/Net/NNTP.pm +++ b/gnu/usr.bin/perl/lib/Net/NNTP.pm @@ -748,8 +748,8 @@ Retrieve the header, a blank line, then the body (text) of the specified article. If C<FH> is specified then it is expected to be a valid filehandle -and the result will be printed to it, on sucess a true value will be -returned. If C<FH> is not specified then the return value, on sucess, +and the result will be printed to it, on success a true value will be +returned. If C<FH> is not specified then the return value, on success, will be a reference to an array containg the article requested, each entry in the array will contain one line of the article. diff --git a/gnu/usr.bin/perl/lib/ftp.pl b/gnu/usr.bin/perl/lib/ftp.pl index 93ce7411ac8..4ab4fe6b67d 100644 --- a/gnu/usr.bin/perl/lib/ftp.pl +++ b/gnu/usr.bin/perl/lib/ftp.pl @@ -14,8 +14,11 @@ # based on original version by Alan R. Martello <al@ee.pitt.edu> # And by A.Macpherson@bnr.co.uk for multi-homed hosts # -# $Header: /home/cvs/src/gnu/usr.bin/perl/lib/Attic/ftp.pl,v 1.6 2002/10/27 22:25:26 millert Exp $ +# $Header: /home/cvs/src/gnu/usr.bin/perl/lib/Attic/ftp.pl,v 1.7 2002/12/09 00:45:36 millert Exp $ # $Log: ftp.pl,v $ +# Revision 1.7 2002/12/09 00:45:36 millert +# From Andrushock, s/sucess/success/g +# # Revision 1.6 2002/10/27 22:25:26 millert # Resolve conflicts, remove old files, merge local changes # @@ -331,10 +334,10 @@ sub ftp'cwd # Get a full directory listing: # &ftp'dir( remote LIST options ) -# Start a list goin with the given options. +# Start a list going with the given options. # Presuming that the remote deamon uses the ls command to generate the # data to send back then you can send it some extra options (eg: -lRa) -# return 1 if sucessful and 0 on a failure +# return 1 if successful and 0 on a failure sub ftp'dir_open { local( $options ) = @_; diff --git a/gnu/usr.bin/perl/lib/utf8.t b/gnu/usr.bin/perl/lib/utf8.t index 8fc44816f4e..fd01970802a 100644 --- a/gnu/usr.bin/perl/lib/utf8.t +++ b/gnu/usr.bin/perl/lib/utf8.t @@ -189,7 +189,7 @@ BANG print "# Again! Again! [but this time as eval, and not the explosive one]\n"; # and now we've safely done them all as separate files, check that the - # evals do the same thing. Hopefully doing it later sucessfully decouples + # evals do the same thing. Hopefully doing it later successfully decouples # the previous tests from anything messy that may go wrong with the evals. foreach (@tests) { my ($why, $prog, $expect) = @$_; diff --git a/gnu/usr.bin/texinfo/makeinfo/node.c b/gnu/usr.bin/texinfo/makeinfo/node.c index 4995e89e782..e00006f992a 100644 --- a/gnu/usr.bin/texinfo/makeinfo/node.c +++ b/gnu/usr.bin/texinfo/makeinfo/node.c @@ -1,5 +1,5 @@ /* node.c -- nodes for Texinfo. - $Id: node.c,v 1.1.1.2 2002/06/10 13:21:22 espie Exp $ + $Id: node.c,v 1.2 2002/12/09 00:45:36 millert Exp $ Copyright (C) 1998, 99, 2000, 01, 02 Free Software Foundation, Inc. @@ -1797,7 +1797,7 @@ split_file (filename, size) } } - /* We have sucessfully created the subfiles. Now write out the + /* We have successfully created the subfiles. Now write out the original again. We must use `output_stream', or write_tag_table_indirect () won't know where to place the output. */ output_stream = fopen (filename, "w"); diff --git a/gnu/usr.sbin/sendmail/sendmail/milter.c b/gnu/usr.sbin/sendmail/sendmail/milter.c index 328af6512b6..725d733392a 100644 --- a/gnu/usr.sbin/sendmail/sendmail/milter.c +++ b/gnu/usr.sbin/sendmail/sendmail/milter.c @@ -549,7 +549,7 @@ milter_write(m, cmd, buf, len, to, e) ** e -- current envelope. ** ** Returns: -** connected socket if sucessful && !parseonly, +** connected socket if successful && !parseonly, ** 0 upon parse success if parseonly, ** -1 otherwise. */ diff --git a/kerberosIV/src/appl/popper/pop3e.rfc1082 b/kerberosIV/src/appl/popper/pop3e.rfc1082 index ac49448b5e1..613e43f5aa0 100644 --- a/kerberosIV/src/appl/popper/pop3e.rfc1082 +++ b/kerberosIV/src/appl/popper/pop3e.rfc1082 @@ -202,7 +202,7 @@ RFC 1082 POP3 Extended Service November 1988 the maildrop. NOTE: The maxima may be characterized as a monotonically - increasing quanity. Although sucessive values of the + increasing quanity. Although successive values of the maxima need not be consecutive, any maxima assigned is always greater than any previously assigned value. diff --git a/kerberosV/src/appl/popper/pop3e.rfc1082 b/kerberosV/src/appl/popper/pop3e.rfc1082 index ac49448b5e1..613e43f5aa0 100644 --- a/kerberosV/src/appl/popper/pop3e.rfc1082 +++ b/kerberosV/src/appl/popper/pop3e.rfc1082 @@ -202,7 +202,7 @@ RFC 1082 POP3 Extended Service November 1988 the maildrop. NOTE: The maxima may be characterized as a monotonically - increasing quanity. Although sucessive values of the + increasing quanity. Although successive values of the maxima need not be consecutive, any maxima assigned is always greater than any previously assigned value. diff --git a/lib/libssl/src/doc/ssleay.txt b/lib/libssl/src/doc/ssleay.txt index c6049d5e53b..d19da310eb2 100644 --- a/lib/libssl/src/doc/ssleay.txt +++ b/lib/libssl/src/doc/ssleay.txt @@ -6245,7 +6245,7 @@ SSL_get_app_data void SSL_CTX_set_default_verify /* This callback, if set, totaly overrides the normal SSLeay verification - * functions and should return 1 on sucesss and 0 on failure */ + * functions and should return 1 on successs and 0 on failure */ void SSL_CTX_set_cert_verify_callback /* The following are the same as the equivilent SSL_xxx functions. diff --git a/lib/libz/gzio.c b/lib/libz/gzio.c index 4ad89681f55..a6b98aeee25 100644 --- a/lib/libz/gzio.c +++ b/lib/libz/gzio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gzio.c,v 1.8 2002/07/06 00:11:40 millert Exp $ */ +/* $OpenBSD: gzio.c,v 1.9 2002/12/09 00:45:37 millert Exp $ */ /* gzio.c -- IO on .gz files * Copyright (C) 1995-2002 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h @@ -231,7 +231,7 @@ int ZEXPORT gzsetparams (file, level, strategy) /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been sucessfully opened for reading. + IN assertion: the stream s has been successfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -256,7 +256,7 @@ local int get_byte(s) mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created sucessfully; + IN assertion: the stream s has already been created successfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ diff --git a/share/man/man5/login.conf.5 b/share/man/man5/login.conf.5 index 1f2b20da43c..cd955ac4dcb 100644 --- a/share/man/man5/login.conf.5 +++ b/share/man/man5/login.conf.5 @@ -30,7 +30,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: login.conf.5,v 1.19 2002/07/03 23:28:49 miod Exp $ +.\" $OpenBSD: login.conf.5,v 1.20 2002/12/09 00:45:37 millert Exp $ .\" BSDI $From: login.conf.5,v 2.20 2000/06/26 14:50:38 prb Exp $ .\" .Dd June 18, 2001 @@ -177,7 +177,7 @@ The possible values are the same as for localcipher. .It login-backoff Ta number Ta 3 Ta After .Ar login-backoff -unsucessful login attempts during a single session, +unsuccessful login attempts during a single session, .Xr login 1 will start sleeping a bit in between attempts. .\" diff --git a/sys/arch/amiga/dev/if_es.c b/sys/arch/amiga/dev/if_es.c index 8eac6515195..dc618467a2a 100644 --- a/sys/arch/amiga/dev/if_es.c +++ b/sys/arch/amiga/dev/if_es.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_es.c,v 1.13 2002/03/14 01:26:29 millert Exp $ */ +/* $OpenBSD: if_es.c,v 1.14 2002/12/09 00:45:37 millert Exp $ */ /* $NetBSD: if_es.c,v 1.16 1996/12/23 09:10:17 veego Exp $ */ /* @@ -466,8 +466,8 @@ zzzz: * This shouldn't have happened: IST_TX indicates * the TX completion FIFO is not empty, but the * status for the packet on the completion FIFO - * shows that the transmit was sucessful. Since - * AutoRelease is being used, a sucessful transmit + * shows that the transmit was successful. Since + * AutoRelease is being used, a successful transmit * should not result in a packet on the completion * FIFO. Also, that packet doesn't seem to want * to be acknowledged. If this occurs, just reset diff --git a/sys/arch/amiga/dev/if_esreg.h b/sys/arch/amiga/dev/if_esreg.h index 86e8456bbc2..afd5fc68618 100644 --- a/sys/arch/amiga/dev/if_esreg.h +++ b/sys/arch/amiga/dev/if_esreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_esreg.h,v 1.3 1997/01/16 09:24:44 niklas Exp $ */ +/* $OpenBSD: if_esreg.h,v 1.4 2002/12/09 00:45:37 millert Exp $ */ /* $NetBSD: if_esreg.h,v 1.4 1996/05/01 15:51:08 mhitch Exp $ */ /* @@ -94,7 +94,7 @@ union smcregs { /* EPH Status Register */ #define EPHSR_16COL 0x1000 /* 16 collisions reached */ #define EPHSR_MULCOL 0x0400 /* Multiple collsions */ -#define EPHSR_TX_SUC 0x0100 /* Last transmit sucessful */ +#define EPHSR_TX_SUC 0x0100 /* Last transmit successful */ #define EPHSR_LOST_CAR 0x0004 /* Lost carrier */ /* Receive Control Register */ diff --git a/sys/arch/hp300/dev/hil.c b/sys/arch/hp300/dev/hil.c index 4d70c185fd8..782ef2cee5c 100644 --- a/sys/arch/hp300/dev/hil.c +++ b/sys/arch/hp300/dev/hil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hil.c,v 1.15 2002/03/14 01:26:30 millert Exp $ */ +/* $OpenBSD: hil.c,v 1.16 2002/12/09 00:45:37 millert Exp $ */ /* $NetBSD: hil.c,v 1.34 1997/04/02 22:37:32 scottr Exp $ */ /* @@ -968,7 +968,7 @@ hilevent(hilp) * Copy data to queue. * If this is the first queue we construct the packet * with length, timestamp and poll buffer data. - * For second and sucessive packets we just duplicate + * For second and successive packets we just duplicate * the first packet. */ pp = (u_char *) &hq->hil_event[hq->hil_evqueue.tail]; diff --git a/sys/arch/hp300/hp300/trap.c b/sys/arch/hp300/hp300/trap.c index d7c47cd016f..02aef00e1d2 100644 --- a/sys/arch/hp300/hp300/trap.c +++ b/sys/arch/hp300/hp300/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.38 2002/06/23 03:03:15 deraadt Exp $ */ +/* $OpenBSD: trap.c,v 1.39 2002/12/09 00:45:37 millert Exp $ */ /* $NetBSD: trap.c,v 1.57 1998/02/16 20:58:31 thorpej Exp $ */ /* @@ -247,7 +247,7 @@ again: * If any writeback fails, go back and attempt signal delivery. * unless we have already been here and attempted the writeback * (e.g. bad address with user ignoring SIGSEGV). In that case - * we just return to the user without sucessfully completing + * we just return to the user without successfully completing * the writebacks. Maybe we should just drop the sucker? */ if (cputype == CPU_68040 && fp->f_format == FMT7) { diff --git a/sys/arch/mvme68k/mvme68k/trap.c b/sys/arch/mvme68k/mvme68k/trap.c index 1878a24d631..3525bdae77c 100644 --- a/sys/arch/mvme68k/mvme68k/trap.c +++ b/sys/arch/mvme68k/mvme68k/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.46 2002/06/23 03:03:15 deraadt Exp $ */ +/* $OpenBSD: trap.c,v 1.47 2002/12/09 00:45:37 millert Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -225,7 +225,7 @@ again: * If any writeback fails, go back and attempt signal delivery. * unless we have already been here and attempted the writeback * (e.g. bad address with user ignoring SIGSEGV). In that case - * we just return to the user without sucessfully completing + * we just return to the user without successfully completing * the writebacks. Maybe we should just drop the sucker? */ if (mmutype == MMU_68040 && fp->f_format == FMT7) { diff --git a/sys/arch/mvme88k/ddb/db_trace.c b/sys/arch/mvme88k/ddb/db_trace.c index 418bfb7b1e6..66f8e41a28a 100644 --- a/sys/arch/mvme88k/ddb/db_trace.c +++ b/sys/arch/mvme88k/ddb/db_trace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_trace.c,v 1.16 2002/05/18 09:49:17 art Exp $ */ +/* $OpenBSD: db_trace.c,v 1.17 2002/12/09 00:45:37 millert Exp $ */ /* * Mach Operating System * Copyright (c) 1993-1991 Carnegie Mellon University @@ -616,7 +616,7 @@ stack_decode(unsigned addr, unsigned *stack, int (*pr)(const char *, ...)) if (!db_trace_get_val(check_addr + 4, &inst)) continue; if (ST_R1_R31_IMM(instr)) - break; /* sucess */ + break; /* success */ #else /* * Latest GCC optimizer is just too good... the store diff --git a/sys/dev/ic/aic7xxx.c b/sys/dev/ic/aic7xxx.c index 4937830f3eb..accf1b3a264 100644 --- a/sys/dev/ic/aic7xxx.c +++ b/sys/dev/ic/aic7xxx.c @@ -28,10 +28,10 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aic7xxx.c,v 1.42 2002/10/09 23:43:10 krw Exp $ + * $Id: aic7xxx.c,v 1.43 2002/12/09 00:45:37 millert Exp $ * * $FreeBSD: src/sys/dev/aic7xxx/aic7xxx.c,v 1.80 2001/12/16 17:38:30 gibbs Exp $ - * $OpenBSD: aic7xxx.c,v 1.42 2002/10/09 23:43:10 krw Exp $ + * $OpenBSD: aic7xxx.c,v 1.43 2002/12/09 00:45:37 millert Exp $ */ #ifdef __OpenBSD__ @@ -1109,7 +1109,7 @@ ahc_handle_scsiint(struct ahc_softc *ahc, u_int intstat) /* * Although the driver does not care about the * 'Selection in Progress' status bit, the busy - * LED does. SELINGO is only cleared by a sucessfull + * LED does. SELINGO is only cleared by a successfull * selection, so we must manually clear it to insure * the LED turns off just incase no future successful * selections occur (e.g. no devices on the bus). diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index db5a29bd208..f9229be2d7f 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_var.h,v 1.26 2002/07/03 21:19:08 miod Exp $ */ +/* $OpenBSD: ip_var.h,v 1.27 2002/12/09 00:45:37 millert Exp $ */ /* $NetBSD: ip_var.h,v 1.16 1996/02/13 23:43:20 christos Exp $ */ /* @@ -134,7 +134,7 @@ struct ipstat { u_long ips_localout; /* total ip packets generated here */ u_long ips_odropped; /* lost packets due to nobufs, etc. */ u_long ips_reassembled; /* total packets reassembled ok */ - u_long ips_fragmented; /* datagrams sucessfully fragmented */ + u_long ips_fragmented; /* datagrams successfully fragmented */ u_long ips_ofragments; /* output fragments created */ u_long ips_cantfrag; /* don't fragment flag was set, etc. */ u_long ips_badoptions; /* error in option processing */ diff --git a/sys/netinet6/ip6_var.h b/sys/netinet6/ip6_var.h index 915979b2094..c7ee41a94fd 100644 --- a/sys/netinet6/ip6_var.h +++ b/sys/netinet6/ip6_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_var.h,v 1.20 2002/09/11 03:27:30 itojun Exp $ */ +/* $OpenBSD: ip6_var.h,v 1.21 2002/12/09 00:45:37 millert Exp $ */ /* $KAME: ip6_var.h,v 1.33 2000/06/11 14:59:20 jinmei Exp $ */ /* @@ -154,7 +154,7 @@ struct ip6stat { u_quad_t ip6s_localout; /* total ip packets generated here */ u_quad_t ip6s_odropped; /* lost packets due to nobufs, etc. */ u_quad_t ip6s_reassembled; /* total packets reassembled ok */ - u_quad_t ip6s_fragmented; /* datagrams sucessfully fragmented */ + u_quad_t ip6s_fragmented; /* datagrams successfully fragmented */ u_quad_t ip6s_ofragments; /* output fragments created */ u_quad_t ip6s_cantfrag; /* don't fragment flag was set, etc. */ u_quad_t ip6s_badoptions; /* error in option processing */ diff --git a/usr.bin/aucat/aucat.c b/usr.bin/aucat/aucat.c index 7ba67214b8e..82f56fc45af 100644 --- a/usr.bin/aucat/aucat.c +++ b/usr.bin/aucat/aucat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aucat.c,v 1.4 2000/07/01 19:54:36 millert Exp $ */ +/* $OpenBSD: aucat.c,v 1.5 2002/12/09 00:45:38 millert Exp $ */ /* * Copyright (c) 1997 Kenneth Stailey. All rights reserved. * @@ -42,7 +42,7 @@ /* function playfile: given a file which is positioned at the beginning * of what is assumed to be an .au data stream copy it out to the audio - * device. Return 0 on sucess, -1 on failure. + * device. Return 0 on success, -1 on failure. */ int playfile(fd, dev) diff --git a/usr.bin/make/lst.lib/lstSucc.c b/usr.bin/make/lst.lib/lstSucc.c index af4d9408cff..70abc0241fe 100644 --- a/usr.bin/make/lst.lib/lstSucc.c +++ b/usr.bin/make/lst.lib/lstSucc.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: lstSucc.c,v 1.10 2001/05/29 12:53:48 espie Exp $ */ +/* $OpenBSD: lstSucc.c,v 1.11 2002/12/09 00:45:38 millert Exp $ */ /* $NetBSD: lstSucc.c,v 1.5 1996/11/06 17:59:52 christos Exp $ */ /* @@ -49,7 +49,7 @@ /*- *----------------------------------------------------------------------- * Lst_Succ -- - * Return the sucessor to the given node on its list. + * Return the successor to the given node on its list. * * Results: * The successor of the node, if it exists. diff --git a/usr.bin/sup/src/supcmain.c b/usr.bin/sup/src/supcmain.c index 1b429fb001c..bd41e56dc72 100644 --- a/usr.bin/sup/src/supcmain.c +++ b/usr.bin/sup/src/supcmain.c @@ -1,4 +1,4 @@ -/* $OpenBSD: supcmain.c,v 1.16 2002/06/14 21:35:00 todd Exp $ */ +/* $OpenBSD: supcmain.c,v 1.17 2002/12/09 00:45:38 millert Exp $ */ /* * Copyright (c) 1992 Carnegie Mellon University @@ -272,7 +272,7 @@ * the user and group specified by the remote system. Changed * execute code to invalidate collection if execute command returns * with a non-zero exit status. Added support for execv() of - * original arguments of supfile is upgraded sucessfully. Changed + * original arguments of supfile is upgraded successfully. Changed * copyfile to always use a temp file if possible. [V5.7] * * 04-Jan-86 Glenn Marcy (gm0w) at Carnegie-Mellon University diff --git a/usr.sbin/afs/src/milko/ChangeLog b/usr.sbin/afs/src/milko/ChangeLog index cb8cdb33ff7..873bb103fce 100644 --- a/usr.sbin/afs/src/milko/ChangeLog +++ b/usr.sbin/afs/src/milko/ChangeLog @@ -1085,7 +1085,7 @@ Thu Jun 22 17:21:06 2000 Tomas Olsson <tol@pizza.stacken.kth.se> * ontop_ff.xg: numacl. - * ontop_subr.c: Dont loop twice in ontop_alloc_vnode if sucessful. + * ontop_subr.c: Dont loop twice in ontop_alloc_vnode if successful. * ontopfs.c: ontop_{fetch,store}acl diff --git a/usr.sbin/httpd/src/CHANGES.SSL b/usr.sbin/httpd/src/CHANGES.SSL index 322e2e284d0..1c4f97d9e8d 100644 --- a/usr.sbin/httpd/src/CHANGES.SSL +++ b/usr.sbin/httpd/src/CHANGES.SSL @@ -2001,7 +2001,7 @@ Changes with mod_ssl 2.1.4 (05-Nov-1998 to 23-Dec-1998) *) Added the support for OpenSSL (see http://www.openssl.org/), - the Open Source sucessor of SSLeay. The package name is no longer + the Open Source successor of SSLeay. The package name is no longer hard-wired and so both the HTTP Server field and the logfile entries correctly reflect the name OpenSSL, too. diff --git a/usr.sbin/ypserv/revnetgroup/parse_netgroup.c b/usr.sbin/ypserv/revnetgroup/parse_netgroup.c index 59aec544527..042152c9f6a 100644 --- a/usr.sbin/ypserv/revnetgroup/parse_netgroup.c +++ b/usr.sbin/ypserv/revnetgroup/parse_netgroup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parse_netgroup.c,v 1.5 2002/07/19 02:38:40 deraadt Exp $ */ +/* $OpenBSD: parse_netgroup.c,v 1.6 2002/12/09 00:45:38 millert Exp $ */ /* * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -51,7 +51,7 @@ #include "hash.h" #ifndef lint -static const char rcsid[] = "$OpenBSD: parse_netgroup.c,v 1.5 2002/07/19 02:38:40 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: parse_netgroup.c,v 1.6 2002/12/09 00:45:38 millert Exp $"; #endif /* @@ -204,7 +204,7 @@ parse_netgrp(char *group) #ifdef DEBUG /* * This error message is largely superflous since the - * code handles the error condition sucessfully, and + * code handles the error condition successfully, and * spewing it out from inside libc can actually hose * certain programs. */ |