Module Name:    src
Committed By:   charlotte
Date:           Wed Aug 10 00:28:00 UTC 2022

Modified Files:
        src/usr.bin/db: db.c

Log Message:
db(1): Don't lie in the usage message re: `-q`


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/usr.bin/db/db.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/db/db.c
diff -u src/usr.bin/db/db.c:1.27 src/usr.bin/db/db.c:1.28
--- src/usr.bin/db/db.c:1.27	Wed Aug 25 23:11:51 2021
+++ src/usr.bin/db/db.c	Wed Aug 10 00:28:00 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: db.c,v 1.27 2021/08/25 23:11:51 rillig Exp $	*/
+/*	$NetBSD: db.c,v 1.28 2022/08/10 00:28:00 charlotte Exp $	*/
 
 /*-
  * Copyright (c) 2002-2009 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
 #include <sys/cdefs.h>
 #ifndef lint
 #ifdef __RCSID
-__RCSID("$NetBSD: db.c,v 1.27 2021/08/25 23:11:51 rillig Exp $");
+__RCSID("$NetBSD: db.c,v 1.28 2022/08/10 00:28:00 charlotte Exp $");
 #endif /* __RCSID */
 #endif /* not lint */
 
@@ -741,7 +741,7 @@ usage(void)
 "   -N           don't NUL terminate key\n"
 "   -O outsep    output field separator string  [default: a tab]\n"
 "   -P pagesize  database page size  [default: 4096]\n"
-"   -q           quiet operation (missing keys aren't errors)\n"
+"   -q           quiet operation\n"
 "   -R           replace existing keys\n"
 "   -S visitem   items to strvis(3) encode: 'k'ey, 'v'alue, 'b'oth\n"
 "   -T visspec   options to control -S and -U; like vis(1) options\n"

Reply via email to