summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/commit.c
diff options
context:
space:
mode:
authortobias <tobias@openbsd.org>2008-01-28 20:31:07 +0000
committertobias <tobias@openbsd.org>2008-01-28 20:31:07 +0000
commitbcf224591508a0518ee5a1ff996b0bb628d14275 (patch)
treef7c3e83150a56c2d27b410ab001a8cf3b991c530 /usr.bin/cvs/commit.c
parentProperly align stack such that code that uses SSE2 instructions doesn't crash. (diff)
downloadwireguard-openbsd-bcf224591508a0518ee5a1ff996b0bb628d14275.tar.xz
wireguard-openbsd-bcf224591508a0518ee5a1ff996b0bb628d14275.zip
Properly handle -R -- although it is default, it may be overwritten mit -l
in front of it. OK joris@, xsa@ > Diff from Igor Zinovik
Diffstat (limited to 'usr.bin/cvs/commit.c')
-rw-r--r--usr.bin/cvs/commit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c
index 98a71b2e4cc..994221f564d 100644
--- a/usr.bin/cvs/commit.c
+++ b/usr.bin/cvs/commit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: commit.c,v 1.119 2008/01/13 11:15:19 tobias Exp $ */
+/* $OpenBSD: commit.c,v 1.120 2008/01/28 20:31:07 tobias Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org>
@@ -75,6 +75,7 @@ cvs_commit(int argc, char **argv)
logmsg = xstrdup(optarg);
break;
case 'R':
+ flags |= CR_RECURSE_DIRS;
break;
case 'r':
break;