source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: do not rewrite short queries
@ 2016-04-14 20:41 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2016-04-14 20:41 UTC (permalink / raw)
  To: source

Log Message:
-----------
do not rewrite short queries

Modified Files:
--------------
    mdocml:
        cgi.c

Revision Data
-------------
Index: cgi.c
===================================================================
RCS file: /home/cvs/mdocml/mdocml/cgi.c,v
retrieving revision 1.120
retrieving revision 1.121
diff -Lcgi.c -Lcgi.c -u -p -r1.120 -r1.121
--- cgi.c
+++ cgi.c
@@ -55,6 +55,7 @@ struct	req {
 	struct query	  q;
 	char		**p; /* array of available manpaths */
 	size_t		  psz; /* number of available manpaths */
+	int		  isquery; /* QUERY_STRING used, not PATH_INFO */
 };
 
 static	void		 catman(const struct req *, const char *);
@@ -188,6 +189,7 @@ http_parse(struct req *req, const char *
 	char		*key, *val;
 	size_t		 keysz, valsz;
 
+	req->isquery	= 1;
 	req->q.manpath	= NULL;
 	req->q.arch	= NULL;
 	req->q.sec	= NULL;
@@ -568,7 +570,7 @@ pg_searchres(const struct req *req, stru
 		return;
 	}
 
-	if (1 == sz) {
+	if (req->isquery && sz == 1) {
 		/*
 		 * If we have just one result, then jump there now
 		 * without any delay.
@@ -1085,6 +1087,7 @@ path_parse(struct req *req, const char *
 {
 	int	 dir_done;
 
+	req->isquery = 0;
 	req->q.equal = 1;
 	req->q.manpath = mandoc_strdup(path);
 
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-04-14 20:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-14 20:41 mdocml: do not rewrite short queries schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).