diff options
author | 1997-01-04 20:31:05 +0000 | |
---|---|---|
committer | 1997-01-04 20:31:05 +0000 | |
commit | de8315be3bd1e882b72e56c191a66f64a3741b5f (patch) | |
tree | 79398eaf1d64089b05a5f34bcc26ae580b633df7 | |
parent | spec_advlock() via lf_advlock() (diff) | |
download | wireguard-openbsd-de8315be3bd1e882b72e56c191a66f64a3741b5f.tar.xz wireguard-openbsd-de8315be3bd1e882b72e56c191a66f64a3741b5f.zip |
added D to getopt() string
-rw-r--r-- | gnu/usr.bin/texinfo/util/install-info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/texinfo/util/install-info.c b/gnu/usr.bin/texinfo/util/install-info.c index 74aa30e4300..7c03edfbe04 100644 --- a/gnu/usr.bin/texinfo/util/install-info.c +++ b/gnu/usr.bin/texinfo/util/install-info.c @@ -1,7 +1,7 @@ /* install-info -- create Info directory entry(ies) for an Info file. Copyright (C) 1996 Free Software Foundation, Inc. -$Id: install-info.c,v 1.1.1.1 1996/12/15 21:39:32 downsj Exp $ +$Id: install-info.c,v 1.2 1997/01/04 20:31:05 kstailey Exp $ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -412,7 +412,7 @@ main (argc, argv) while (1) { - int opt = getopt_long (argc, argv, "i:d:e:s:hHr", longopts, 0); + int opt = getopt_long (argc, argv, "i:d:e:s:hHrD", longopts, 0); if (opt == EOF) break; |