diff options
author | 2007-01-18 15:26:52 +0000 | |
---|---|---|
committer | 2007-01-18 15:26:52 +0000 | |
commit | 585a1783d07ccb94b019f34e3407d5679d508485 (patch) | |
tree | bf8dee67447ed67240081a72fb782f2613c35303 /usr.bin/cvs/commit.c | |
parent | do not freak out if cannot map physdrives into volumes and handle it proper everywhere (diff) | |
download | wireguard-openbsd-585a1783d07ccb94b019f34e3407d5679d508485.tar.xz wireguard-openbsd-585a1783d07ccb94b019f34e3407d5679d508485.zip |
send -l Argument to server when appropriate.
Diffstat (limited to 'usr.bin/cvs/commit.c')
-rw-r--r-- | usr.bin/cvs/commit.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c index fc96be6afd4..775f8f4244a 100644 --- a/usr.bin/cvs/commit.c +++ b/usr.bin/cvs/commit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: commit.c,v 1.98 2007/01/14 23:10:56 joris Exp $ */ +/* $OpenBSD: commit.c,v 1.99 2007/01/18 15:26:52 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org> @@ -126,6 +126,9 @@ cvs_commit(int argc, char **argv) else cvs_file_run(1, &arg, &cr); + if (!(flags & CR_RECURSE_DIRS)) + cvs_client_send_request("Argument -l"); + cvs_client_send_request("Argument -m%s", logmsg); cvs_client_send_files(argv, argc); |