diff options
author | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-10-11 15:52:14 +0000 |
---|---|---|
committer | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-10-11 15:52:14 +0000 |
commit | fea974be69d9e666a827e2a79af6f9c597653f91 (patch) | |
tree | f3254f714ab6477da05a807df3949e48326c9b1a /usr.bin/rcs/ci.c | |
parent | c9a02ff33ca195e6b02178cafca46f988686ec92 (diff) |
zap unused variable `dflag'
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r-- | usr.bin/rcs/ci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c index 5146ad4c122..7d37df2949d 100644 --- a/usr.bin/rcs/ci.c +++ b/usr.bin/rcs/ci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ci.c,v 1.20 2005/10/11 15:50:25 niallo Exp $ */ +/* $OpenBSD: ci.c,v 1.21 2005/10/11 15:52:13 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, dflag, flags, lkmode, interactive, rflag, status; + int i, ch, flags, lkmode, interactive, rflag, status; mode_t fmode; time_t date = -1; RCSFILE *file; @@ -84,7 +84,7 @@ checkin_main(int argc, char **argv) file = NULL; rcs_msg = NULL; newrev = NULL; - fmode = lkmode = dflag = verbose = rflag = status = 0; + fmode = lkmode = verbose = rflag = status = 0; interactive = 1; if ((username = getlogin()) == NULL) { |