summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDavid Krause <david@cvs.openbsd.org>2006-06-02 19:10:25 +0000
committerDavid Krause <david@cvs.openbsd.org>2006-06-02 19:10:25 +0000
commitc586a9434af2f14fc3e43b17cc349d40f2151a19 (patch)
treef64e1bc5424dfbbd4b5aff0a5d3647a3380920ba /usr.bin
parent18bf8f3a6b8f451cc6f98878efc94b261145f9d0 (diff)
various spelling fixes
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/cvs/cvs.c4
-rw-r--r--usr.bin/cvs/file.c4
-rw-r--r--usr.bin/cvs/getlog.c4
-rw-r--r--usr.bin/cvs/repository.c4
-rw-r--r--usr.bin/rcs/ci.c4
5 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c
index 02b2049e7df..b4092587780 100644
--- a/usr.bin/cvs/cvs.c
+++ b/usr.bin/cvs/cvs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cvs.c,v 1.101 2006/05/30 06:36:09 joris Exp $ */
+/* $OpenBSD: cvs.c,v 1.102 2006/06/02 19:10:23 david Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
@@ -220,7 +220,7 @@ main(int argc, char **argv)
if ((current_cvsroot = cvsroot_get(".")) == NULL) {
cvs_log(LP_ERR,
"No CVSROOT specified! Please use the '-d' option");
- fatal("or set the CVSROOT enviroment variable.");
+ fatal("or set the CVSROOT environment variable.");
}
if (current_cvsroot->cr_method != CVS_METHOD_LOCAL)
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c
index 1ff07bbe332..bf1535466d5 100644
--- a/usr.bin/cvs/file.c
+++ b/usr.bin/cvs/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.156 2006/06/01 20:00:52 joris Exp $ */
+/* $OpenBSD: file.c,v 1.157 2006/06/02 19:10:23 david Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
@@ -732,7 +732,7 @@ cvs_file_classify(struct cvs_file *cf, const char *tag, int loud)
if (cf->fd == -1) {
if (verbose)
cvs_log(LP_NOTICE,
- "warning: new-born %s has dissapeared",
+ "warning: new-born %s has disappeared",
cf->file_path);
cf->file_status = FILE_REMOVE_ENTRY;
} else if (cf->file_rcs == NULL || rcsdead == 1) {
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c
index e99586a61c9..65e36f4fb72 100644
--- a/usr.bin/cvs/getlog.c
+++ b/usr.bin/cvs/getlog.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: getlog.c,v 1.61 2006/05/30 21:34:03 joris Exp $ */
+/* $OpenBSD: getlog.c,v 1.62 2006/06/02 19:10:24 david Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -105,7 +105,7 @@ cvs_log_local(struct cvs_file *cf)
return;
} else if (cf->file_status == FILE_ADDED) {
if (verbosity > 0)
- cvs_log(LP_ERR, "%s has been added, but not commited",
+ cvs_log(LP_ERR, "%s has been added, but not committed",
cf->file_path);
return;
}
diff --git a/usr.bin/cvs/repository.c b/usr.bin/cvs/repository.c
index be60d2bd3cc..24951cde33a 100644
--- a/usr.bin/cvs/repository.c
+++ b/usr.bin/cvs/repository.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: repository.c,v 1.2 2006/05/27 15:14:27 joris Exp $ */
+/* $OpenBSD: repository.c,v 1.3 2006/06/02 19:10:24 david Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -79,7 +79,7 @@ cvs_repository_lock(const char *repo)
if (errno == EEXIST)
fatal("cvs_repository_lock: somebody beat us");
else
- fatal("cvs_repostitory_lock: %s: %s",
+ fatal("cvs_repository_lock: %s: %s",
fpath, strerror(errno));
}
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index a771d564ece..b9ad56294f2 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.178 2006/06/02 18:04:33 niallo Exp $ */
+/* $OpenBSD: ci.c,v 1.179 2006/06/02 19:10:23 david Exp $ */
/*
* Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -278,7 +278,7 @@ checkin_main(int argc, char **argv)
if (!(pb.flags & NEWFILE))
pb.flags |= CI_SKIPDESC;
- /* XXX - support for commiting to a file without revisions */
+ /* XXX - support for committing to a file without revisions */
if (pb.file->rf_ndelta == 0) {
pb.flags |= NEWFILE;
pb.file->rf_flags |= RCS_CREATE;