diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-02-18 13:14:44 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-02-18 13:14:44 +0000 |
commit | f9fba03375e83e76e82171ab2e03938143a25be4 (patch) | |
tree | 8d0255479a5c754458e860e41ef9da5288e3e9df /bin | |
parent | b1763e97cd11a5c2649cdb99541c7f53630f3b28 (diff) |
intial -> initial;
the great intial witch hunt, as prompted by tdeval@
os-aix-dso.c: ok henning@
ab.C: ok drahn@
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ed/cbc.c | 6 | ||||
-rw-r--r-- | bin/ed/undo.c | 6 | ||||
-rw-r--r-- | bin/systrace/policy.c | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/bin/ed/cbc.c b/bin/ed/cbc.c index 004b4ae6d2e..61f827c0e22 100644 --- a/bin/ed/cbc.c +++ b/bin/ed/cbc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cbc.c,v 1.8 2002/09/06 18:17:53 deraadt Exp $ */ +/* $OpenBSD: cbc.c,v 1.9 2003/02/18 13:14:43 jmc Exp $ */ /* $NetBSD: cbc.c,v 1.9 1995/03/21 09:04:36 cgd Exp $ */ /* cbc.c: This file contains the encryption routines for the ed line editor */ @@ -44,7 +44,7 @@ #if 0 static char *rcsid = "@(#)cbc.c,v 1.2 1994/02/01 00:34:36 alm Exp"; #else -static char rcsid[] = "$OpenBSD: cbc.c,v 1.8 2002/09/06 18:17:53 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: cbc.c,v 1.9 2003/02/18 13:14:43 jmc Exp $"; #endif #endif /* not lint */ @@ -124,7 +124,7 @@ init_des_cipher() /* initialize the initialization vctor */ MEMZERO(ivec, 8); - /* intialize the padding vector */ + /* initialize the padding vector */ srand((unsigned) time(NULL)); for (i = 0; i < 8; i++) CHAR(pvec, i) = (char) (rand()/RAND_DIV); diff --git a/bin/ed/undo.c b/bin/ed/undo.c index a82e0bc8e55..76708f0191e 100644 --- a/bin/ed/undo.c +++ b/bin/ed/undo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: undo.c,v 1.6 2002/03/24 22:17:04 millert Exp $ */ +/* $OpenBSD: undo.c,v 1.7 2003/02/18 13:14:43 jmc Exp $ */ /* $NetBSD: undo.c,v 1.2 1995/03/21 09:04:52 cgd Exp $ */ /* undo.c: This file contains the undo routines for the ed line editor */ @@ -32,7 +32,7 @@ #if 0 static char *rcsid = "@(#)undo.c,v 1.1 1994/02/01 00:34:44 alm Exp"; #else -static char rcsid[] = "$OpenBSD: undo.c,v 1.6 2002/03/24 22:17:04 millert Exp $"; +static char rcsid[] = "$OpenBSD: undo.c,v 1.7 2003/02/18 13:14:43 jmc Exp $"; #endif #endif /* not lint */ @@ -44,7 +44,7 @@ undo_t *ustack = NULL; /* undo stack */ int usize = 0; /* stack size variable */ int u_p = 0; /* undo stack pointer */ -/* push_undo_stack: return pointer to intialized undo node */ +/* push_undo_stack: return pointer to initialized undo node */ undo_t * push_undo_stack(type, from, to) int type; diff --git a/bin/systrace/policy.c b/bin/systrace/policy.c index 6daf5957a9c..7b0e24e064c 100644 --- a/bin/systrace/policy.c +++ b/bin/systrace/policy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: policy.c,v 1.23 2002/12/09 07:23:52 itojun Exp $ */ +/* $OpenBSD: policy.c,v 1.24 2003/02/18 13:14:43 jmc Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -223,7 +223,7 @@ systrace_newpolicy(const char *emulation, const char *name) tmp->policynr = -1; - /* New policies requires intialization */ + /* New policies requires initialization */ if ((tmp->name = strdup(name)) == NULL) err(1, "%s:%d: strdup", __func__, __LINE__); strlcpy(tmp->emulation, emulation, sizeof(tmp->emulation)); |