diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-28 22:02:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-28 22:02:28 +0000 |
commit | 35b8d49e8884f0f22e0fe2061f0c420ac833c0a5 (patch) | |
tree | 7bced3cda4ce400eac99ecc33100e44c42e98197 | |
parent | e260aba41c43915261ee84534709d75055a5bd3e (diff) |
fix usage message; netbsd pr#2580; jhawk@mit.edu
-rw-r--r-- | gnu/usr.bin/ld/ldconfig/ldconfig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/ld/ldconfig/ldconfig.c b/gnu/usr.bin/ld/ldconfig/ldconfig.c index fb31d4d73b5..7c1eb95ac69 100644 --- a/gnu/usr.bin/ld/ldconfig/ldconfig.c +++ b/gnu/usr.bin/ld/ldconfig/ldconfig.c @@ -1,3 +1,5 @@ +/* $OpenBSD: ldconfig.c,v 1.3 1996/06/28 22:02:27 deraadt Exp $ */ + /* * Copyright (c) 1993,1995 Paul Kranenburg * All rights reserved. @@ -26,8 +28,6 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $Id: ldconfig.c,v 1.2 1996/01/12 19:56:20 deraadt Exp $ */ #include <sys/param.h> @@ -104,7 +104,7 @@ char *argv[]; verbose = 1; break; default: - errx(1, "Usage: %s [-r][-s][-v][dir ...]", + errx(1, "Usage: %s [-mrsv] [dir ...]", __progname); break; } |