summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/cvs/add.c4
-rw-r--r--usr.bin/cvs/admin.c4
-rw-r--r--usr.bin/cvs/checkout.c6
-rw-r--r--usr.bin/cvs/diff.c4
-rw-r--r--usr.bin/cvs/import.c4
-rw-r--r--usr.bin/cvs/update.c4
6 files changed, 13 insertions, 13 deletions
diff --git a/usr.bin/cvs/add.c b/usr.bin/cvs/add.c
index c3c0e35097e..f2fed8a3611 100644
--- a/usr.bin/cvs/add.c
+++ b/usr.bin/cvs/add.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: add.c,v 1.97 2008/03/09 03:41:55 joris Exp $ */
+/* $OpenBSD: add.c,v 1.98 2008/05/22 15:45:01 tobias Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>
@@ -64,7 +64,7 @@ cvs_add(int argc, char **argv)
kflag = rcs_kflag_get(optarg);
if (RCS_KWEXP_INVAL(kflag)) {
cvs_log(LP_ERR,
- "invalid RCS keyword expension mode");
+ "invalid RCS keyword expansion mode");
fatal("%s", cvs_cmd_add.cmd_synopsis);
}
(void)xsnprintf(kbuf, sizeof(kbuf), "-k%s", optarg);
diff --git a/usr.bin/cvs/admin.c b/usr.bin/cvs/admin.c
index c5796ca5b33..92bd0e7f5e1 100644
--- a/usr.bin/cvs/admin.c
+++ b/usr.bin/cvs/admin.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: admin.c,v 1.58 2008/05/11 12:16:00 tobias Exp $ */
+/* $OpenBSD: admin.c,v 1.59 2008/05/22 15:45:01 tobias Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* Copyright (c) 2005 Joris Vink <joris@openbsd.org>
@@ -89,7 +89,7 @@ cvs_admin(int argc, char **argv)
kflag = rcs_kflag_get(koptstr);
if (RCS_KWEXP_INVAL(kflag)) {
cvs_log(LP_ERR,
- "invalid RCS keyword expension mode");
+ "invalid RCS keyword expansion mode");
fatal("%s", cvs_cmd_admin.cmd_synopsis);
}
break;
diff --git a/usr.bin/cvs/checkout.c b/usr.bin/cvs/checkout.c
index cedc6a3fe26..202c508c7e4 100644
--- a/usr.bin/cvs/checkout.c
+++ b/usr.bin/cvs/checkout.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: checkout.c,v 1.143 2008/03/09 03:14:52 joris Exp $ */
+/* $OpenBSD: checkout.c,v 1.144 2008/05/22 15:45:01 tobias Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -112,7 +112,7 @@ cvs_checkout(int argc, char **argv)
kflag = rcs_kflag_get(koptstr);
if (RCS_KWEXP_INVAL(kflag)) {
cvs_log(LP_ERR,
- "invalid RCS keyword expension mode");
+ "invalid RCS keyword expansion mode");
fatal("%s", cvs_cmd_add.cmd_synopsis);
}
break;
@@ -170,7 +170,7 @@ cvs_export(int argc, char **argv)
kflag = rcs_kflag_get(koptstr);
if (RCS_KWEXP_INVAL(kflag)) {
cvs_log(LP_ERR,
- "invalid RCS keyword expension mode");
+ "invalid RCS keyword expansion mode");
fatal("%s", cvs_cmd_add.cmd_synopsis);
}
break;
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c
index 9a734327786..39cf04534bc 100644
--- a/usr.bin/cvs/diff.c
+++ b/usr.bin/cvs/diff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff.c,v 1.134 2008/03/13 19:54:34 sthen Exp $ */
+/* $OpenBSD: diff.c,v 1.135 2008/05/22 15:45:01 tobias Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -88,7 +88,7 @@ cvs_diff(int argc, char **argv)
kflag = rcs_kflag_get(koptstr);
if (RCS_KWEXP_INVAL(kflag)) {
cvs_log(LP_ERR,
- "invalid RCS keyword expension mode");
+ "invalid RCS keyword expansion mode");
fatal("%s", cvs_cmdop == CVS_OP_DIFF ?
cvs_cmd_diff.cmd_synopsis :
cvs_cmd_rdiff.cmd_synopsis);
diff --git a/usr.bin/cvs/import.c b/usr.bin/cvs/import.c
index 9d7df15472c..e0bad5c1c69 100644
--- a/usr.bin/cvs/import.c
+++ b/usr.bin/cvs/import.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: import.c,v 1.88 2008/05/22 06:48:27 xsa Exp $ */
+/* $OpenBSD: import.c,v 1.89 2008/05/22 15:45:01 tobias Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -76,7 +76,7 @@ cvs_import(int argc, char **argv)
kflag = rcs_kflag_get(koptstr);
if (RCS_KWEXP_INVAL(kflag)) {
cvs_log(LP_ERR,
- "invalid RCS keyword expension mode");
+ "invalid RCS keyword expansion mode");
fatal("%s", cvs_cmd_import.cmd_synopsis);
}
break;
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c
index 2d50fdf5c9e..9d3a8b486d4 100644
--- a/usr.bin/cvs/update.c
+++ b/usr.bin/cvs/update.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: update.c,v 1.142 2008/03/09 15:43:55 joris Exp $ */
+/* $OpenBSD: update.c,v 1.143 2008/05/22 15:45:01 tobias Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -99,7 +99,7 @@ cvs_update(int argc, char **argv)
kflag = rcs_kflag_get(koptstr);
if (RCS_KWEXP_INVAL(kflag)) {
cvs_log(LP_ERR,
- "invalid RCS keyword expension mode");
+ "invalid RCS keyword expansion mode");
fatal("%s", cvs_cmd_update.cmd_synopsis);
}
break;