summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoris <joris@openbsd.org>2005-04-19 00:55:07 +0000
committerjoris <joris@openbsd.org>2005-04-19 00:55:07 +0000
commit39e4b2f6c5ff2afce4c84502d9dfa1d6959b0209 (patch)
treec7840c2e3a286152566eb8a16024991c86125770
parentThere is no reliable way to detect a working network interface. So (diff)
downloadwireguard-openbsd-39e4b2f6c5ff2afce4c84502d9dfa1d6959b0209.tar.xz
wireguard-openbsd-39e4b2f6c5ff2afce4c84502d9dfa1d6959b0209.zip
send the correct argument, -A not -a
-rw-r--r--usr.bin/cvs/update.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c
index 90bd209ba8b..15d48f7bb63 100644
--- a/usr.bin/cvs/update.c
+++ b/usr.bin/cvs/update.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: update.c,v 1.24 2005/04/19 00:38:39 joris Exp $ */
+/* $OpenBSD: update.c,v 1.25 2005/04/19 00:55:07 joris Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -105,7 +105,7 @@ cvs_update_sendflags(struct cvsroot *root)
{
if (Pflag && cvs_sendarg(root, "-P", 0) < 0)
return (CVS_EX_PROTO);
- if (Aflag && cvs_sendarg(root, "-a", 0) < 0)
+ if (Aflag && cvs_sendarg(root, "-A", 0) < 0)
return (CVS_EX_PROTO);
if (dflag && cvs_sendarg(root, "-d", 0) < 0)
return (CVS_EX_PROTO);