summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diff.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-07-22 16:42:58 +0000
committermillert <millert@openbsd.org>2003-07-22 16:42:58 +0000
commitd6c18fb8f37dd30b2e065b9fbb729c1b639d4064 (patch)
tree41b2ac19f99d8fbf6d54ebe39c4c5b28987481dc /usr.bin/diff/diff.c
parentremove (already disabled) KRB4/AFS support, re-enable -k in ssh(1); (diff)
downloadwireguard-openbsd-d6c18fb8f37dd30b2e065b9fbb729c1b639d4064.tar.xz
wireguard-openbsd-d6c18fb8f37dd30b2e065b9fbb729c1b639d4064.zip
Add missing terminator to long options list.
Diffstat (limited to 'usr.bin/diff/diff.c')
-rw-r--r--usr.bin/diff/diff.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/diff/diff.c b/usr.bin/diff/diff.c
index 5e94598900e..b671ec3892e 100644
--- a/usr.bin/diff/diff.c
+++ b/usr.bin/diff/diff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff.c,v 1.33 2003/07/22 01:16:01 millert Exp $ */
+/* $OpenBSD: diff.c,v 1.34 2003/07/22 16:42:58 millert Exp $ */
/*
* Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -21,7 +21,7 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: diff.c,v 1.33 2003/07/22 01:16:01 millert Exp $";
+static const char rcsid[] = "$OpenBSD: diff.c,v 1.34 2003/07/22 16:42:58 millert Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -70,6 +70,7 @@ static struct option longopts[] = {
{ "ignore-all-space", no_argument, 0, 'w' },
{ "exclude", required_argument, 0, 'x' },
{ "exclude-from", required_argument, 0, 'X' },
+ { NULL, 0, 0, '\0'}
};
__dead void usage(void);