Fight the ever-increasing size of src checkouts by spelling "useful"

without an extra l.
This commit is contained in:
snj 2010-02-28 15:52:16 +00:00
parent 77db2769ee
commit ccaf1e96be
13 changed files with 36 additions and 36 deletions

View File

@ -2241,7 +2241,7 @@
* src/racoon/crypto_openssl.c (eay_3des_*): Check for strict key
length only with old API.
(eay_des_encrypt): Ditto.
* src/racoon/eaytest.c: Make the testsuite usefull, i.e. exit with
* src/racoon/eaytest.c: Make the testsuite useful, i.e. exit with
non-zero error code if any of the tests fail.
(main): Print banner with version.
* src/racoon/Makefile.in: Run eaytest in 'make check'.

View File

@ -1,4 +1,4 @@
/* $NetBSD: sockmisc.c,v 1.17 2009/07/07 12:25:22 tteras Exp $ */
/* $NetBSD: sockmisc.c,v 1.18 2010/02/28 15:52:16 snj Exp $ */
/* Id: sockmisc.c,v 1.24 2006/05/07 21:32:59 manubsd Exp */
@ -940,7 +940,7 @@ naddr_score(const struct netaddr *naddr, const struct sockaddr *saddr)
return -1;
}
/* Some usefull functions for sockaddr port manipulations. */
/* Some useful functions for sockaddr port manipulations. */
u_int16_t
extract_port (const struct sockaddr *addr)
{

View File

@ -1,4 +1,4 @@
/* $NetBSD: sockmisc.h,v 1.11 2009/07/03 06:41:47 tteras Exp $ */
/* $NetBSD: sockmisc.h,v 1.12 2010/02/28 15:52:16 snj Exp $ */
/* Id: sockmisc.h,v 1.9 2005/10/05 16:55:41 manubsd Exp */
@ -88,7 +88,7 @@ extern char *naddrwop2str_fromto __P((const char *format, const struct netaddr *
const struct netaddr *daddr));
extern int naddr_score(const struct netaddr *naddr, const struct sockaddr *saddr);
/* Some usefull functions for sockaddr port manipulations. */
/* Some useful functions for sockaddr port manipulations. */
extern u_int16_t extract_port __P((const struct sockaddr *addr));
extern u_int16_t *set_port __P((struct sockaddr *addr, u_int16_t new_port));
extern u_int16_t *get_port_ptr __P((struct sockaddr *addr));

View File

@ -1,4 +1,4 @@
/* $NetBSD: grf_rtreg.h,v 1.15 2007/03/04 05:59:20 christos Exp $ */
/* $NetBSD: grf_rtreg.h,v 1.16 2010/02/28 15:52:16 snj Exp $ */
/*
* Copyright (c) 1993 Markus Wild
@ -381,10 +381,10 @@ extern unsigned char NCRStdPalette[];
#define SEQ_ID_CHAR_MAP_SELECT 0x03
#define SEQ_ID_MEMORY_MODE 0x04
#define SEQ_ID_EXTENDED_ENABLE 0x05 /* down from here, all seq registers are NCR extensions */
#define SEQ_ID_UNKNOWN1 0x06 /* it does exist so it's probably usefull */
#define SEQ_ID_UNKNOWN2 0x07 /* it does exist so it's probably usefull */
#define SEQ_ID_UNKNOWN1 0x06 /* it does exist so it's probably useful */
#define SEQ_ID_UNKNOWN2 0x07 /* it does exist so it's probably useful */
#define SEQ_ID_CHIP_ID 0x08
#define SEQ_ID_UNKNOWN3 0x09 /* it does exist so it's probably usefull */
#define SEQ_ID_UNKNOWN3 0x09 /* it does exist so it's probably useful */
#define SEQ_ID_CURSOR_COLOR1 0x0A
#define SEQ_ID_CURSOR_COLOR0 0x0B
#define SEQ_ID_CURSOR_CONTROL 0x0C

View File

@ -1,4 +1,4 @@
/* $NetBSD: ncr5380.c,v 1.65 2009/10/20 19:10:10 snj Exp $ */
/* $NetBSD: ncr5380.c,v 1.66 2010/02/28 15:52:16 snj Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman.
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ncr5380.c,v 1.65 2009/10/20 19:10:10 snj Exp $");
__KERNEL_RCSID(0, "$NetBSD: ncr5380.c,v 1.66 2010/02/28 15:52:16 snj Exp $");
/*
* Bit mask of targets you want debugging to be shown
@ -614,7 +614,7 @@ main_exit:
* This interrupt can only be triggered when running in non-polled DMA
* mode. When DMA is not active, it will be silently ignored, it is usually
* to late because the EOP interrupt of the controller happens just a tiny
* bit earlier. It might become usefull when scatter/gather is implemented,
* bit earlier. It might become useful when scatter/gather is implemented,
* because in that case only part of the DATAIN/DATAOUT transfer is taken
* out of a single buffer.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: mq200reg.h,v 1.10 2005/12/11 12:17:33 christos Exp $ */
/* $NetBSD: mq200reg.h,v 1.11 2010/02/28 15:52:16 snj Exp $ */
/*-
* Copyright (c) 2000, 2001 TAKEMURA Shin
@ -286,7 +286,7 @@
# define MQ200_GCAWSA_MASK 0x000fffff
/* bits 24-21 are reserved */
# define MQ200_GCAWPI_MASK 0xfe000000
# define MQ200_GCAWPI_SHIFT 24 /* XXX, 24 could be usefull
# define MQ200_GCAWPI_SHIFT 24 /* XXX, 24 could be useful
than 23 */
/* GC Window Stride (GC0ER and GC2ER) */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ahc_isa.c,v 1.37 2009/05/05 09:51:23 cegger Exp $ */
/* $NetBSD: ahc_isa.c,v 1.38 2010/02/28 15:52:16 snj Exp $ */
/*
* Product specific probe and attach routines for:
@ -110,7 +110,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ahc_isa.c,v 1.37 2009/05/05 09:51:23 cegger Exp $");
__KERNEL_RCSID(0, "$NetBSD: ahc_isa.c,v 1.38 2010/02/28 15:52:16 snj Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -440,7 +440,7 @@ ahc_isa_attach(device_t parent, device_t self, void *aux)
/*
* Tell the user what type of interrupts we're using.
* usefull for debugging irq problems
* useful for debugging irq problems
*/
if (bootverbose) {
aprint_verbose_dev(ahc->sc_dev, "Using %s interrupts\n",

View File

@ -1,4 +1,4 @@
/* $NetBSD: decode.h,v 1.2 2007/02/21 22:59:45 thorpej Exp $ */
/* $NetBSD: decode.h,v 1.3 2010/02/28 15:52:16 snj Exp $ */
/* Contributed to the NetBSD Foundation by Cherry G. Mathew <cherry@mahiti.org>
* This file contains prototypes to decode unwind descriptors.
@ -195,7 +195,7 @@ enum record_type {
/* A record chain is a decoded unwind descriptor.
* It is usefull for post processing unwind descriptors.
* It is useful for post processing unwind descriptors.
*/
struct recordchain {

View File

@ -1,4 +1,4 @@
/* $NetBSD: stackframe.h,v 1.1 2006/04/07 14:21:37 cherry Exp $ */
/* $NetBSD: stackframe.h,v 1.2 2010/02/28 15:52:16 snj Exp $ */
/*
* Contributed to the NetBSD foundation by Cherry G. Mathew
@ -63,7 +63,7 @@ struct staterecord {
/* The unwind frame is a simpler version of the trap frame
* and contains a subset of preserved registers, which are
* usefull in unwinding an ia64 stack frame.
* useful in unwinding an ia64 stack frame.
* Keep this in sync with the staterecord. See: stackframe.c:updateregs()
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: ncr5380.c,v 1.63 2009/10/20 19:10:12 snj Exp $ */
/* $NetBSD: ncr5380.c,v 1.64 2010/02/28 15:52:16 snj Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman.
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ncr5380.c,v 1.63 2009/10/20 19:10:12 snj Exp $");
__KERNEL_RCSID(0, "$NetBSD: ncr5380.c,v 1.64 2010/02/28 15:52:16 snj Exp $");
/*
* Bit mask of targets you want debugging to be shown
@ -617,7 +617,7 @@ main_exit:
* This interrupt can only be triggered when running in non-polled DMA
* mode. When DMA is not active, it will be silently ignored, it is usually
* to late because the EOP interrupt of the controller happens just a tiny
* bit earlier. It might become usefull when scatter/gather is implemented,
* bit earlier. It might become useful when scatter/gather is implemented,
* because in that case only part of the DATAIN/DATAOUT transfer is taken
* out of a single buffer.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_atu.c,v 1.35 2010/01/19 22:07:43 pooka Exp $ */
/* $NetBSD: if_atu.c,v 1.36 2010/02/28 15:52:16 snj Exp $ */
/* $OpenBSD: if_atu.c,v 1.48 2004/12/30 01:53:21 dlg Exp $ */
/*
* Copyright (c) 2003, 2004
@ -48,7 +48,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_atu.c,v 1.35 2010/01/19 22:07:43 pooka Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_atu.c,v 1.36 2010/02/28 15:52:16 snj Exp $");
#include <sys/param.h>
@ -649,7 +649,7 @@ atu_initial_config(struct atu_softc *sc)
/*
* TODO:
* read reg domain MIB_PHY @ 0x17 (1 byte), (reply = 0x30)
* we should do something usefull with this info. right now it's just
* we should do something useful with this info. right now it's just
* ignored
*/
err = atu_get_mib(sc, MIB_PHY__REG_DOMAIN, &reg_domain);

View File

@ -1,4 +1,4 @@
$NetBSD: TODO,v 1.3 2005/12/11 12:24:28 christos Exp $
$NetBSD: TODO,v 1.4 2010/02/28 15:52:17 snj Exp $
- convert the code to do caching in buffer cache indexed by
file-vnode/file-offset so that NTFS would take advantage of UBC;
@ -36,4 +36,4 @@ $NetBSD: TODO,v 1.3 2005/12/11 12:24:28 christos Exp $
- basic sysinst support for NTFS
- NTFS ACL support (though usefullness of such feature is arguable)
- NTFS ACL support (though usefulness of such feature is arguable)

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_spppsubr.c,v 1.118 2009/04/18 14:58:05 tsutsui Exp $ */
/* $NetBSD: if_spppsubr.c,v 1.119 2010/02/28 15:52:17 snj Exp $ */
/*
* Synchronous PPP/Cisco link level subroutines.
@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_spppsubr.c,v 1.118 2009/04/18 14:58:05 tsutsui Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_spppsubr.c,v 1.119 2010/02/28 15:52:17 snj Exp $");
#include "opt_inet.h"
#include "opt_ipx.h"
@ -3906,7 +3906,7 @@ sppp_chap_input(struct sppp *sp, struct mbuf *m)
/* challenge, failure and success are his authproto */
case CHAP_CHALLENGE:
if (sp->myauth.secret == NULL || sp->myauth.name == NULL) {
/* can't do anything usefull */
/* can't do anything useful */
sp->pp_auth_failures++;
printf("%s: chap input without my name and my secret being set\n",
ifp->if_xname);
@ -4009,7 +4009,7 @@ sppp_chap_input(struct sppp *sp, struct mbuf *m)
/* response is my authproto */
case CHAP_RESPONSE:
if (sp->hisauth.secret == NULL) {
/* can't do anything usefull */
/* can't do anything useful */
printf("%s: chap input without his secret being set\n",
ifp->if_xname);
break;
@ -4278,7 +4278,7 @@ sppp_chap_scr(struct sppp *sp)
u_char clen;
if (sp->myauth.name == NULL) {
/* can't do anything usefull */
/* can't do anything useful */
printf("%s: chap starting without my name being set\n",
sp->pp_if.if_xname);
return;
@ -4349,7 +4349,7 @@ sppp_pap_input(struct sppp *sp, struct mbuf *m)
/* PAP request is my authproto */
case PAP_REQ:
if (sp->hisauth.name == NULL || sp->hisauth.secret == NULL) {
/* can't do anything usefull */
/* can't do anything useful */
printf("%s: pap request without his name and his secret being set\n",
ifp->if_xname);
break;
@ -4622,7 +4622,7 @@ sppp_pap_scr(struct sppp *sp)
u_char idlen, pwdlen;
if (sp->myauth.secret == NULL || sp->myauth.name == NULL) {
/* can't do anything usefull */
/* can't do anything useful */
printf("%s: pap starting without my name and secret being set\n",
sp->pp_if.if_xname);
return;