diff options
author | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-10-16 11:36:57 +0000 |
---|---|---|
committer | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-10-16 11:36:57 +0000 |
commit | 8e683075ec8157eea0232e0c0f630a88b5615378 (patch) | |
tree | a9485969d7057317a9bd643cdbfa308dc621d8a0 /usr.bin/rcs | |
parent | ae4b656004d35d45047bb835bcc321952e425d6c (diff) |
- remove unused `flags' variable.
Diffstat (limited to 'usr.bin/rcs')
-rw-r--r-- | usr.bin/rcs/ci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c index 45c64a981e5..98d6aa36735 100644 --- a/usr.bin/rcs/ci.c +++ b/usr.bin/rcs/ci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ci.c,v 1.34 2005/10/16 11:35:11 niallo Exp $ */ +/* $OpenBSD: ci.c,v 1.35 2005/10/16 11:36:56 niallo Exp $ */ /* * Copyright (c) 2005 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -70,7 +70,7 @@ checkin_usage(void) int checkin_main(int argc, char **argv) { - int i, ch, flags, force, lkmode, interactive, rflag, status; + int i, ch, force, lkmode, interactive, rflag, status; mode_t fmode; time_t date; RCSFILE *file; @@ -81,7 +81,6 @@ checkin_main(int argc, char **argv) BUF *bp; date = DATE_NOW; - flags = RCS_RDWR; file = NULL; rcs_msg = username = NULL; newrev = NULL; |