summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2006-06-19 20:48:37 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2006-06-19 20:48:37 +0000
commit3467d817eee1151400647dc6fa49c5a2c38ffc7d (patch)
tree4333b774d99ac697249ed3bea7418dfaeeebbb9e /usr.sbin
parent2fa279ef39f6e512ed4298c6f93943e256bd8bf4 (diff)
add -c to usage() and synopsis;
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bgpd/bgpd.84
-rw-r--r--usr.sbin/bgpd/bgpd.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/bgpd/bgpd.8 b/usr.sbin/bgpd/bgpd.8
index a4b83e5a28e..4837e2d42ba 100644
--- a/usr.sbin/bgpd/bgpd.8
+++ b/usr.sbin/bgpd/bgpd.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: bgpd.8,v 1.20 2006/06/19 12:06:24 henning Exp $
+.\" $OpenBSD: bgpd.8,v 1.21 2006/06/19 20:48:36 jmc Exp $
.\"
.\" Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
.\"
@@ -23,7 +23,7 @@
.Sh SYNOPSIS
.Nm bgpd
.Bk -words
-.Op Fl dnv
+.Op Fl cdnv
.Oo Xo
.Fl D Ar macro Ns = Ns Ar value Oc
.Xc
diff --git a/usr.sbin/bgpd/bgpd.c b/usr.sbin/bgpd/bgpd.c
index 06abb9d0eae..65fa69dfa29 100644
--- a/usr.sbin/bgpd/bgpd.c
+++ b/usr.sbin/bgpd/bgpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpd.c,v 1.138 2006/06/17 14:06:09 henning Exp $ */
+/* $OpenBSD: bgpd.c,v 1.139 2006/06/19 20:48:36 jmc Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -85,7 +85,7 @@ usage(void)
{
extern char *__progname;
- fprintf(stderr, "usage: %s [-dnv] ", __progname);
+ fprintf(stderr, "usage: %s [-cdnv] ", __progname);
fprintf(stderr, "[-D macro=value] [-f file] [-r path] [-s path]\n");
exit(1);
}