From 72df3e1d32f66115a62b6fd2a8a0acc0e9173468 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Thu, 17 Mar 2016 22:06:44 +0000 Subject: make man(1) mode the default rather than apropos(1) mode --- cgi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cgi.c b/cgi.c index 06a04837..9aee1ab3 100644 --- a/cgi.c +++ b/cgi.c @@ -1,7 +1,7 @@ /* $Id$ */ /* * Copyright (c) 2011, 2012 Kristaps Dzonsons - * Copyright (c) 2014, 2015 Ingo Schwarze + * Copyright (c) 2014, 2015, 2016 Ingo Schwarze * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -1032,6 +1032,7 @@ main(void) } memset(&req, 0, sizeof(struct req)); + req.q.equal = 1; pathgen(&req); /* Parse the path info and the query string. */ -- cgit