diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-05-29 08:19:10 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-05-29 08:19:10 +0000 |
commit | bf13adbce35fe4ebf59a997c8ba618bf67dbab70 (patch) | |
tree | 93707ca5515110ac25e39a2ee384efb3dbad5a94 /usr.bin | |
parent | 7fd426daddf298b22430aa3204724174df4c55b7 (diff) |
fix pasto
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/remove.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/remove.c b/usr.bin/cvs/remove.c index a0490e5ca2c..88e73c816b6 100644 --- a/usr.bin/cvs/remove.c +++ b/usr.bin/cvs/remove.c @@ -1,4 +1,4 @@ -/* $OpenBSD: remove.c,v 1.47 2006/05/29 05:52:42 joris Exp $ */ +/* $OpenBSD: remove.c,v 1.48 2006/05/29 08:19:09 xsa Exp $ */ /* * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org> * @@ -49,7 +49,7 @@ cvs_remove(int argc, char **argv) struct cvs_recursion cr; flags = CR_RECURSE_DIRS; - while ((ch = getopt(argc, argv, cvs_cmd_commit.cmd_opts)) != -1) { + while ((ch = getopt(argc, argv, cvs_cmd_remove.cmd_opts)) != -1) { switch (ch) { case 'f': force_remove = 1; @@ -60,7 +60,7 @@ cvs_remove(int argc, char **argv) case 'R': break; default: - fatal("%s", cvs_cmd_commit.cmd_synopsis); + fatal("%s", cvs_cmd_remove.cmd_synopsis); } } |