diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-01-31 21:52:49 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-01-31 21:52:49 +0000 |
commit | f6667d691c82185320df4e684c65ef6497d17e89 (patch) | |
tree | 291f690bca289e51ca529910036cf636053177cd /usr.bin/cvs | |
parent | 77faf37562ec7fcc3ef5a05c270fc695db830fcb (diff) |
We have cvs_client_send_logmsg for transmission of log messages.
OK joris@ xsa@
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/admin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/admin.c b/usr.bin/cvs/admin.c index 1c63c161fff..6a00daadec3 100644 --- a/usr.bin/cvs/admin.c +++ b/usr.bin/cvs/admin.c @@ -1,4 +1,4 @@ -/* $OpenBSD: admin.c,v 1.53 2008/01/31 10:15:05 tobias Exp $ */ +/* $OpenBSD: admin.c,v 1.54 2008/01/31 21:52:48 tobias Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * Copyright (c) 2005 Joris Vink <joris@openbsd.org> @@ -170,7 +170,7 @@ cvs_admin(int argc, char **argv) cvs_client_send_request("Argument -U"); if (logstr != NULL) - cvs_client_send_request("Argument -m%s", logstr); + cvs_client_send_logmsg(logstr); if (orange != NULL) cvs_client_send_request("Argument -o%s", orange); |