summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-06-25 19:56:58 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-06-25 19:56:58 +0000
commitcdb8f08119a05b10a4e1e68e533ac0018aa72027 (patch)
treee3d7b275a961d2836a98ef740b6cd19f52aaf24f
parentd0b2b0161141176085099aa351a98003335cc237 (diff)
Fix getopt string for -D
-rw-r--r--usr.bin/diff/diff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/diff/diff.c b/usr.bin/diff/diff.c
index 4eb8d4b371b..09b9fe98b6a 100644
--- a/usr.bin/diff/diff.c
+++ b/usr.bin/diff/diff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff.c,v 1.6 2003/06/25 17:49:22 millert Exp $ */
+/* $OpenBSD: diff.c,v 1.7 2003/06/25 19:56:57 millert Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
@@ -65,7 +65,7 @@ main(int argc, char **argv)
status = 2;
diffargv = argv;
- while ((ch = getopt(argc, argv, "bC:cDefhilnrS:stw")) != -1) {
+ while ((ch = getopt(argc, argv, "bC:cD:efhilnrS:stw")) != -1) {
switch (ch) {
case 'b':
bflag++;