diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-03-15 20:57:15 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-03-15 20:57:15 +0000 |
commit | a995e755d4518486473cf6405ba5e125b6eb050a (patch) | |
tree | 146849bdb71b5c4ec08d33a7eded105ed7e65be5 /usr.bin | |
parent | 5948f6a3e9f6d25f3f6cff3c7e4f989003bb5333 (diff) |
ask for log message when it's not specified, got broken in xsa's previous
commit.
ok niallo@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rcs/ci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c index 33591de5c3b..c5939a003e5 100644 --- a/usr.bin/rcs/ci.c +++ b/usr.bin/rcs/ci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ci.c,v 1.119 2006/03/15 16:04:08 xsa Exp $ */ +/* $OpenBSD: ci.c,v 1.120 2006/03/15 20:57:14 joris Exp $ */ /* * Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -113,6 +113,7 @@ checkin_main(int argc, char **argv) pb.newrev = NULL; pb.fmode = pb.flags = status = 0; + pb.flags = INTERACTIVE; pb.openflags = RCS_RDWR|RCS_CREATE|RCS_PARSE_FULLY; while ((ch = rcs_getopt(argc, argv, CI_OPTSTRING)) != -1) { |