s/allready/already/
This commit is contained in:
parent
fda8fb7c07
commit
d97db3840b
@ -1,4 +1,4 @@
|
||||
LIST OF CHANGES FROM PREVIOUS RELEASES: <$Revision: 1.37 $>
|
||||
LIST OF CHANGES FROM PREVIOUS RELEASES: <$Revision: 1.38 $>
|
||||
|
||||
|
||||
Changes from 386bsd 0.1 + patchkit 0.2.2 to NetBSD 0.8:
|
||||
@ -959,7 +959,7 @@ Changes from NetBSD 0.9 to NetBSD 1.0:
|
||||
add POSIX.2's confstr(3). (jtc)
|
||||
do the right thing when lookup()-ing for creation. (cgd)
|
||||
change libg++ to not install "compatibility" header files ---
|
||||
our header files are allready C++ compatible. (jtc)
|
||||
our header files are already C++ compatible. (jtc)
|
||||
add -m and -n options to swapinfo. (cgd)
|
||||
patch from Ukai Fumitoshi <ukai@kmc.kyoto-u.ac.jp> to do the
|
||||
right thing with NFS fsid's and getnewfsid(). (cgd)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: rpckbd.c,v 1.12 2005/12/11 12:16:47 christos Exp $ */
|
||||
/* $NetBSD: rpckbd.c,v 1.13 2006/04/25 02:19:31 snj Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
@ -45,7 +45,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: rpckbd.c,v 1.12 2005/12/11 12:16:47 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: rpckbd.c,v 1.13 2006/04/25 02:19:31 snj Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -185,7 +185,7 @@ rpckbd_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct lwp *l)
|
||||
case WSKBDIO_SETLEDS:
|
||||
/* same as rpckbd_set_leds */
|
||||
|
||||
/* check if we're allready in this state */
|
||||
/* check if we're already in this state */
|
||||
new_ledstate = rpckbd_led_encode(*(int *)data);
|
||||
if (new_ledstate == sc->sc_ledstate)
|
||||
return 0;
|
||||
@ -333,7 +333,7 @@ rpckbd_set_leds(void *context, int leds)
|
||||
struct rpckbd_softc *sc = (struct rpckbd_softc *) context;
|
||||
int res, new_ledstate;
|
||||
|
||||
/* check if we're allready in this state */
|
||||
/* check if we're already in this state */
|
||||
new_ledstate = rpckbd_led_encode(leds);
|
||||
if (new_ledstate == sc->sc_ledstate)
|
||||
return;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: vidcvideo.c,v 1.23 2006/04/15 17:48:23 jmmv Exp $ */
|
||||
/* $NetBSD: vidcvideo.c,v 1.24 2006/04/25 02:19:31 snj Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Reinoud Zandijk
|
||||
@ -36,7 +36,7 @@
|
||||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.23 2006/04/15 17:48:23 jmmv Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.24 2006/04/25 02:19:31 snj Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -363,7 +363,7 @@ vidcvideo_attach(parent, self, aux)
|
||||
};
|
||||
sc->nscreens = 1;
|
||||
} else {
|
||||
printf(": allready attached ... can't cope with this\n");
|
||||
printf(": already attached ... can't cope with this\n");
|
||||
return;
|
||||
};
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: pci_machdep.c,v 1.24 2006/03/09 20:17:27 garbled Exp $ */
|
||||
/* $NetBSD: pci_machdep.c,v 1.25 2006/04/25 02:19:31 snj Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
|
||||
@ -39,7 +39,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.24 2006/03/09 20:17:27 garbled Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.25 2006/04/25 02:19:31 snj Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
@ -223,7 +223,7 @@ prep_pci_conf_hook(void *v, int bus, int dev, int func, pcireg_t id)
|
||||
PCI_PRODUCT(id) == PCI_PRODUCT_WEITEK_P9100)
|
||||
return 0;
|
||||
|
||||
/* We have allready mapped the MPIC2 if we have one, so leave it
|
||||
/* We have already mapped the MPIC2 if we have one, so leave it
|
||||
alone */
|
||||
if (PCI_VENDOR(id) == PCI_VENDOR_IBM &&
|
||||
PCI_PRODUCT(id) == PCI_PRODUCT_IBM_MPIC2)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: mkbootimage.c,v 1.15 2006/04/13 18:57:24 garbled Exp $ */
|
||||
/* $NetBSD: mkbootimage.c,v 1.16 2006/04/25 02:19:31 snj Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (C) 2006 Tim Rightnour
|
||||
@ -141,7 +141,7 @@ check_mbr(int prep_fd, int lfloppyflag, char *rawdev)
|
||||
}
|
||||
|
||||
/*
|
||||
* if we have a raw device, we need to check to see if it allready
|
||||
* if we have a raw device, we need to check to see if it already
|
||||
* has a partition table, and if so, read it in and check for
|
||||
* suitability.
|
||||
*/
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: udf_subr.c,v 1.5 2006/03/01 12:38:21 yamt Exp $ */
|
||||
/* $NetBSD: udf_subr.c,v 1.6 2006/04/25 02:19:31 snj Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006 Reinoud Zandijk
|
||||
@ -36,7 +36,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#ifndef lint
|
||||
__RCSID("$NetBSD: udf_subr.c,v 1.5 2006/03/01 12:38:21 yamt Exp $");
|
||||
__RCSID("$NetBSD: udf_subr.c,v 1.6 2006/04/25 02:19:31 snj Exp $");
|
||||
#endif /* not lint */
|
||||
|
||||
|
||||
@ -215,7 +215,7 @@ udf_validate_tag_sum(void *blob)
|
||||
|
||||
/* --------------------------------------------------------------------- */
|
||||
|
||||
/* assumes sector number of descriptor to be saved allready present */
|
||||
/* assumes sector number of descriptor to be saved already present */
|
||||
|
||||
int
|
||||
udf_validate_tag_and_crc_sums(void *blob)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: udf_vfsops.c,v 1.2 2006/02/02 15:38:35 reinoud Exp $ */
|
||||
/* $NetBSD: udf_vfsops.c,v 1.3 2006/04/25 02:19:31 snj Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006 Reinoud Zandijk
|
||||
@ -36,7 +36,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#ifndef lint
|
||||
__RCSID("$NetBSD: udf_vfsops.c,v 1.2 2006/02/02 15:38:35 reinoud Exp $");
|
||||
__RCSID("$NetBSD: udf_vfsops.c,v 1.3 2006/04/25 02:19:31 snj Exp $");
|
||||
#endif /* not lint */
|
||||
|
||||
|
||||
@ -228,7 +228,7 @@ free_udf_mountinfo(struct mount *mp)
|
||||
|
||||
/*
|
||||
* Note that the node related (e)fe descriptors pool is
|
||||
* destroyed allready if it was used.
|
||||
* destroyed already if it was used.
|
||||
*/
|
||||
|
||||
free(ump, M_UDFMNT);
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: udf_vnops.c,v 1.2 2006/02/02 15:38:35 reinoud Exp $ */
|
||||
/* $NetBSD: udf_vnops.c,v 1.3 2006/04/25 02:19:31 snj Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006 Reinoud Zandijk
|
||||
@ -36,7 +36,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#ifndef lint
|
||||
__RCSID("$NetBSD: udf_vnops.c,v 1.2 2006/02/02 15:38:35 reinoud Exp $");
|
||||
__RCSID("$NetBSD: udf_vnops.c,v 1.3 2006/04/25 02:19:31 snj Exp $");
|
||||
#endif /* not lint */
|
||||
|
||||
|
||||
@ -308,7 +308,7 @@ udf_strategy(void *v)
|
||||
sectors = bp->b_bcount / lb_size;
|
||||
assert(bp->b_bcount > 0);
|
||||
|
||||
/* NEVER assume later that this buffer is allready translated */
|
||||
/* NEVER assume later that this buffer is already translated */
|
||||
/* bp->b_lblkno = bp->b_blkno; */
|
||||
|
||||
DPRINTF(STRATEGY, ("\tread vp %p buf %p (blk no %"PRIu64")"
|
||||
|
Loading…
Reference in New Issue
Block a user