diff options
author | bde <bde@FreeBSD.org> | 1996-09-24 17:29:42 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-09-24 17:29:42 +0000 |
commit | a0082297a8ede5618e20e7cfc0aca508fe867b5b (patch) | |
tree | 23319f2e96ecc8cb374ca46e0734e58ef6d40b37 /usr.bin/xinstall | |
parent | 4c88ad3be85cea56519f775edef143dcec56629c (diff) | |
download | FreeBSD-src-a0082297a8ede5618e20e7cfc0aca508fe867b5b.zip FreeBSD-src-a0082297a8ede5618e20e7cfc0aca508fe867b5b.tar.gz |
Changed 'd' to 'D' in getopt arg too.
Diffstat (limited to 'usr.bin/xinstall')
-rw-r--r-- | usr.bin/xinstall/xinstall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c index 92e56c0..c5096d1 100644 --- a/usr.bin/xinstall/xinstall.c +++ b/usr.bin/xinstall/xinstall.c @@ -40,7 +40,7 @@ static const char copyright[] = #ifndef lint /*static char sccsid[] = "From: @(#)xinstall.c 8.1 (Berkeley) 7/21/93";*/ static const char rcsid[] = - "$Id: xinstall.c,v 1.12 1996/09/05 07:54:08 peter Exp $"; + "$Id: xinstall.c,v 1.13 1996/09/24 04:15:02 imp Exp $"; #endif /* not lint */ /*- @@ -128,7 +128,7 @@ main(argc, argv) char *flags, *to_name; iflags = 0; - while ((ch = getopt(argc, argv, "Ccdf:g:m:o:psv")) != EOF) + while ((ch = getopt(argc, argv, "CcDf:g:m:o:psv")) != EOF) switch((char)ch) { case 'C': docompare = docopy = 1; |