summaryrefslogtreecommitdiff
path: root/usr.bin/tn3270
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2003-11-08 19:17:31 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2003-11-08 19:17:31 +0000
commitf0f3a0c6fbdf3bbd095d37a8fd2e0d0c250f8a21 (patch)
treef9bafe25867d0323af89776288c80edb6b30c09c /usr.bin/tn3270
parent01ff1e7438b7bc934d05a03ca72d57c3e5484fab (diff)
typos from Jonathon Gray;
Diffstat (limited to 'usr.bin/tn3270')
-rw-r--r--usr.bin/tn3270/ascii/map3270.c6
-rw-r--r--usr.bin/tn3270/tools/mkmake.y6
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/tn3270/ascii/map3270.c b/usr.bin/tn3270/ascii/map3270.c
index 06c6470322c..3c48afacffd 100644
--- a/usr.bin/tn3270/ascii/map3270.c
+++ b/usr.bin/tn3270/ascii/map3270.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: map3270.c,v 1.8 2003/09/29 09:08:20 miod Exp $ */
+/* $OpenBSD: map3270.c,v 1.9 2003/11/08 19:17:29 jmc Exp $ */
/*-
* Copyright (c) 1988 The Regents of the University of California.
@@ -31,7 +31,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)map3270.c 4.2 (Berkeley) 4/26/91";*/
-static char rcsid[] = "$OpenBSD: map3270.c,v 1.8 2003/09/29 09:08:20 miod Exp $";
+static char rcsid[] = "$OpenBSD: map3270.c,v 1.9 2003/11/08 19:17:29 jmc Exp $";
#endif /* not lint */
/* This program reads a description file, somewhat like /etc/termcap,
@@ -73,7 +73,7 @@ static char rcsid[] = "$OpenBSD: map3270.c,v 1.8 2003/09/29 09:08:20 miod Exp $"
#define LEX_END_OF_FILE LEX_CARETED+1 /* end of file encountered */
#define LEX_ILLEGAL LEX_END_OF_FILE+1 /* trailing escape character */
-/* the following is part of our character set dependancy... */
+/* the following is part of our character set dependency... */
#define ESCAPE 0x1b
#define TAB 0x09
#define NEWLINE 0x0a
diff --git a/usr.bin/tn3270/tools/mkmake.y b/usr.bin/tn3270/tools/mkmake.y
index 5002ba93ba5..4bd94884a78 100644
--- a/usr.bin/tn3270/tools/mkmake.y
+++ b/usr.bin/tn3270/tools/mkmake.y
@@ -31,7 +31,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)mkmake.y 4.2 (Berkeley) 4/26/91";*/
-static char rcsid[] = "$Id: mkmake.y,v 1.4 2003/06/03 02:56:19 millert Exp $";
+static char rcsid[] = "$Id: mkmake.y,v 1.5 2003/11/08 19:17:29 jmc Exp $";
#endif /* not lint */
typedef struct string {
@@ -57,7 +57,7 @@ typedef struct string {
* (and, we restrict any given one to live on one and only one such list)
*
* Also, they may live on the list of values for someone else's variable,
- * or as someone's dependancy.
+ * or as someone's dependency.
*/
typedef struct same {
@@ -66,7 +66,7 @@ typedef struct same {
struct same
*nexttoken, /* Next pointer */
*lasttoken, /* Back pointer */
- *depend_list, /* If target, dependancies */
+ *depend_list, /* If target, dependencies */
*action_list, /* If target, actions */
*value_list, /* If variable, value list */
*shell_item; /* If a shell variable, current value */