From 8ba5fb0785e4a70782c0d842fac1d73c9bace085 Mon Sep 17 00:00:00 2001 From: op Date: Sun, 26 Jun 2022 18:48:10 +0000 Subject: [PATCH] add --null to usage() forgot in previous commit. reminded by jmc@, thanks! --- usr.bin/grep/grep.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr.bin/grep/grep.c b/usr.bin/grep/grep.c index 181af7f6ada..680bedeed2f 100644 --- a/usr.bin/grep/grep.c +++ b/usr.bin/grep/grep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grep.c,v 1.66 2022/06/26 10:57:36 op Exp $ */ +/* $OpenBSD: grep.c,v 1.67 2022/06/26 18:48:10 op Exp $ */ /*- * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav @@ -118,7 +118,8 @@ usage(void) #endif " [-e pattern]\n" "\t[-f file] [-m num] [--binary-files=value] [--context[=num]]\n" - "\t[--label=name] [--line-buffered] [pattern] [file ...]\n", + "\t[--label=name] [--line-buffered] [--null] [pattern]" + " [file ...]\n", __progname); exit(2); } -- 2.20.1