Explicitly write explicitly without a second e.
This commit is contained in:
parent
e26efb5202
commit
55e6492076
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.3 2001/04/12 07:48:09 itojun Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2001/11/21 17:33:26 wiz Exp $
|
||||
|
||||
# RCSid:
|
||||
# Id: Makefile,v 1.33 1998/11/11 11:53:53 sjg Exp
|
||||
@ -42,7 +42,7 @@ INCSDIR=/usr/include/openssl
|
||||
|
||||
# this rebuilds the `srcs.inc' and the .inc files it reads.
|
||||
# note that we have no idea, rc5 or rsa here so we include
|
||||
# them explicitely above if we are using these ciphers.
|
||||
# them explicitly above if we are using these ciphers.
|
||||
# XXX
|
||||
# we patch `ssl.inc' as we need to be able to turn off SSLv2.
|
||||
update_inc:
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: hdfd.c,v 1.28 2001/07/08 18:06:43 wiz Exp $ */
|
||||
/* $NetBSD: hdfd.c,v 1.29 2001/11/21 17:33:27 wiz Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 Leo Weppelman
|
||||
@ -526,7 +526,7 @@ fdc_ctrl_intr(frame)
|
||||
|
||||
/*
|
||||
* Disable further interrupts. The fdcintr() routine
|
||||
* explicitely enables them when needed.
|
||||
* explicitly enables them when needed.
|
||||
*/
|
||||
MFP2->mf_ierb &= ~IB_DCHG;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_le_pci.c,v 1.35 2001/11/13 07:48:43 lukem Exp $ */
|
||||
/* $NetBSD: if_le_pci.c,v 1.36 2001/11/21 17:33:28 wiz Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
||||
@ -76,7 +76,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_le_pci.c,v 1.35 2001/11/13 07:48:43 lukem Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_le_pci.c,v 1.36 2001/11/21 17:33:28 wiz Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -221,7 +221,7 @@ le_pci_mediachange(sc)
|
||||
reg = bus_space_read_2(iot, ioh, PCNET_PCI_BDP);
|
||||
if (IFM_OPTIONS(newmedia) & IFM_FDX) {
|
||||
reg |= 1; /* FDEN */
|
||||
/* allow FDX on AUI only if explicitely chosen,
|
||||
/* allow FDX on AUI only if explicitly chosen,
|
||||
not in autoselect mode */
|
||||
if (IFM_SUBTYPE(newmedia) == IFM_10_5)
|
||||
reg |= 2; /* AUIFD */
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: pciide.c,v 1.135 2001/11/15 20:48:17 bouyer Exp $ */
|
||||
/* $NetBSD: pciide.c,v 1.136 2001/11/21 17:33:28 wiz Exp $ */
|
||||
|
||||
|
||||
/*
|
||||
@ -77,7 +77,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: pciide.c,v 1.135 2001/11/15 20:48:17 bouyer Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pciide.c,v 1.136 2001/11/21 17:33:28 wiz Exp $");
|
||||
|
||||
#ifndef WDCDEBUG
|
||||
#define WDCDEBUG
|
||||
@ -2454,7 +2454,7 @@ cmd0643_9_chip_map(sc, pa)
|
||||
sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
|
||||
sc->sc_wdcdev.UDMA_cap = 2;
|
||||
#endif
|
||||
/* explicitely disable UDMA */
|
||||
/* explicitly disable UDMA */
|
||||
pciide_pci_write(sc->sc_pc, sc->sc_tag,
|
||||
CMD_UDMATIM(0), 0);
|
||||
pciide_pci_write(sc->sc_pc, sc->sc_tag,
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: func.c,v 1.14 2001/05/28 12:40:37 lukem Exp $ */
|
||||
/* $NetBSD: func.c,v 1.15 2001/11/21 17:33:29 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994, 1995 Jochen Pohl
|
||||
@ -33,7 +33,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#ifndef lint
|
||||
__RCSID("$NetBSD: func.c,v 1.14 2001/05/28 12:40:37 lukem Exp $");
|
||||
__RCSID("$NetBSD: func.c,v 1.15 2001/11/21 17:33:29 wiz Exp $");
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
@ -366,7 +366,7 @@ funcend(void)
|
||||
/*
|
||||
* write the information about the function definition to the
|
||||
* output file
|
||||
* inline functions explicitely declared extern are written as
|
||||
* inline functions explicitly declared extern are written as
|
||||
* declarations only.
|
||||
*/
|
||||
if (dcs->d_scl == EXTERN && funcsym->s_inline) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: chat.8,v 1.14 2001/04/05 11:50:48 wiz Exp $
|
||||
.\" $NetBSD: chat.8,v 1.15 2001/11/21 17:33:30 wiz Exp $
|
||||
.\" -*- nroff -*-
|
||||
.\" manual page [] for chat 1.8
|
||||
.\" Id: chat.8,v 1.9 1999/09/06 05:10:23 paulus Exp
|
||||
@ -206,7 +206,7 @@ terminal), standard error will normally be redirected to the file
|
||||
.LP
|
||||
\fBSAY\fR strings must be enclosed in single or double quotes. If
|
||||
carriage return and line feed are needed in the string to be output,
|
||||
you must explicitely add them to your string.
|
||||
you must explicitly add them to your string.
|
||||
.LP
|
||||
The SAY strings could be used to give progress messages in sections of
|
||||
the script where you want to have 'ECHO OFF' but still let the user
|
||||
|
Loading…
Reference in New Issue
Block a user