=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/remove.c,v retrieving revision 1.47 retrieving revision 1.48 diff -c -r1.47 -r1.48 *** src/usr.bin/cvs/remove.c 2006/05/29 05:52:42 1.47 --- src/usr.bin/cvs/remove.c 2006/05/29 08:19:09 1.48 *************** *** 1,4 **** ! /* $OpenBSD: remove.c,v 1.47 2006/05/29 05:52:42 joris Exp $ */ /* * Copyright (c) 2005, 2006 Xavier Santolaria * --- 1,4 ---- ! /* $OpenBSD: remove.c,v 1.48 2006/05/29 08:19:09 xsa Exp $ */ /* * Copyright (c) 2005, 2006 Xavier Santolaria * *************** *** 49,55 **** struct cvs_recursion cr; flags = CR_RECURSE_DIRS; ! while ((ch = getopt(argc, argv, cvs_cmd_commit.cmd_opts)) != -1) { switch (ch) { case 'f': force_remove = 1; --- 49,55 ---- struct cvs_recursion cr; flags = CR_RECURSE_DIRS; ! while ((ch = getopt(argc, argv, cvs_cmd_remove.cmd_opts)) != -1) { switch (ch) { case 'f': force_remove = 1; *************** *** 60,66 **** case 'R': break; default: ! fatal("%s", cvs_cmd_commit.cmd_synopsis); } } --- 60,66 ---- case 'R': break; default: ! fatal("%s", cvs_cmd_remove.cmd_synopsis); } }