summaryrefslogtreecommitdiff
path: root/usr.bin/cvs
diff options
context:
space:
mode:
authorPedro Martelletto <pedro@cvs.openbsd.org>2006-05-28 23:38:43 +0000
committerPedro Martelletto <pedro@cvs.openbsd.org>2006-05-28 23:38:43 +0000
commitfc299efa6265f4ef0bb3d77dc5970a6ea2b3e9ed (patch)
tree6f5154ebc4b62792d43c8111eed4dcf0b3739961 /usr.bin/cvs
parent08dca66110d8a626f5f7dc402dc8ae18e13848f0 (diff)
Fix engrish, okay joris@
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r--usr.bin/cvs/file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c
index 1d0b4b3cfa8..7612dc0190d 100644
--- a/usr.bin/cvs/file.c
+++ b/usr.bin/cvs/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.147 2006/05/28 21:11:12 joris Exp $ */
+/* $OpenBSD: file.c,v 1.148 2006/05/28 23:38:42 pedro Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
@@ -577,11 +577,11 @@ cvs_file_classify(struct cvs_file *cf, int loud)
if (cf->file_ent != NULL) {
if (cf->file_ent->ce_type == CVS_ENT_DIR &&
cf->file_type != CVS_DIR)
- fatal("%s is suppose to be a directory, but it is not",
+ fatal("%s is supposed to be a directory, but it is not",
cf->file_path);
if (cf->file_ent->ce_type == CVS_ENT_FILE &&
cf->file_type != CVS_FILE)
- fatal("%s is suppose to be a file, but it is not",
+ fatal("%s is supposed to be a file, but it is not",
cf->file_path);
}