diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-12-14 09:31:18 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-12-14 09:31:18 +0000 |
commit | d2e60cd039b7fe927bcef7cf438f3e5b66063d21 (patch) | |
tree | 94708367d174f7e5b7c2d9e2457efea8dbccb2cd /usr.bin/cvs/remove.c | |
parent | a0b4e55935fd0999f5c4b5f81108aec875037c21 (diff) |
no need to send -f to the server; this flag has effect
on the client-side only.
Diffstat (limited to 'usr.bin/cvs/remove.c')
-rw-r--r-- | usr.bin/cvs/remove.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/cvs/remove.c b/usr.bin/cvs/remove.c index a87bd8a9267..edd580f62b3 100644 --- a/usr.bin/cvs/remove.c +++ b/usr.bin/cvs/remove.c @@ -1,4 +1,4 @@ -/* $OpenBSD: remove.c,v 1.56 2006/11/06 11:12:56 xsa Exp $ */ +/* $OpenBSD: remove.c,v 1.57 2006/12/14 09:31:17 xsa Exp $ */ /* * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org> * @@ -72,9 +72,6 @@ cvs_remove(int argc, char **argv) if (current_cvsroot->cr_method != CVS_METHOD_LOCAL) { cr.fileproc = cvs_client_sendfile; - if (force_remove == 1) - cvs_client_send_request("Argument -f"); - if (!(flags & CR_RECURSE_DIRS)) cvs_client_send_request("Argument -l"); } else { |