Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/makemandb Update the comment to be in sync with the...



details:   https://anonhg.NetBSD.org/src/rev/bf503a5cd783
branches:  trunk
changeset: 823642:bf503a5cd783
user:      abhinav <abhinav%NetBSD.org@localhost>
date:      Sun Apr 30 14:53:58 2017 +0000

description:
Update the comment to be in sync with the code.

diffstat:

 usr.sbin/makemandb/apropos-utils.c |  14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diffs (37 lines):

diff -r d7a49b152e07 -r bf503a5cd783 usr.sbin/makemandb/apropos-utils.c
--- a/usr.sbin/makemandb/apropos-utils.c        Sun Apr 30 14:49:26 2017 +0000
+++ b/usr.sbin/makemandb/apropos-utils.c        Sun Apr 30 14:53:58 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: apropos-utils.c,v 1.33 2017/04/30 14:49:26 abhinav Exp $       */
+/*     $NetBSD: apropos-utils.c,v 1.34 2017/04/30 14:53:58 abhinav Exp $       */
 /*-
  * Copyright (c) 2011 Abhinav Upadhyay <er.abhinav.upadhyay%gmail.com@localhost>
  * All rights reserved.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: apropos-utils.c,v 1.33 2017/04/30 14:49:26 abhinav Exp $");
+__RCSID("$NetBSD: apropos-utils.c,v 1.34 2017/04/30 14:53:58 abhinav Exp $");
 
 #include <sys/queue.h>
 #include <sys/stat.h>
@@ -520,12 +520,14 @@
        }
 
        /* We want to build a query of the form: "select x,y,z from mandb where
-        * mandb match :query [AND (section LIKE '1' OR section LIKE '2' OR...)]
-        * ORDER BY rank DESC..."
+        * mandb match :query [AND (section IN ('1', '2')]
+        * ORDER BY rank DESC [LIMIT 10 OFFSET 0]"
         * NOTES:
-        *   1. The portion in square brackets is optional, it will be there
-        *      only if the user has specified an option on the command line
+        *   1. The portion in first pair of square brackets is optional.
+        *      It will be there only if the user has specified an option
         *      to search in one or more specific sections.
+        *   2. The LIMIT portion will be there if the user has specified
+        *      a limit using the -n option.
         */
        char *sections_str = args->sec_nums;
        char *temp;



Home | Main Index | Thread Index | Old Index