aboutsummaryrefslogtreecommitdiffstats
path: root/search.c
diff options
context:
space:
mode:
Diffstat (limited to 'search.c')
-rw-r--r--search.c26
1 files changed, 7 insertions, 19 deletions
diff --git a/search.c b/search.c
index 616a9be..80d0b1a 100644
--- a/search.c
+++ b/search.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: search.c,v 1.57 2016/10/24 18:57:12 okan Exp $
+ * $OpenBSD: search.c,v 1.58 2016/12/01 20:28:19 okan Exp $
*/
#include <sys/types.h>
@@ -36,10 +36,8 @@
#define PATH_ANY 0x0001
#define PATH_EXEC 0x0002
-static void search_match_path(struct menu_q *, struct menu_q *,
+static void search_match_path_type(struct menu_q *, struct menu_q *,
char *, int);
-static void search_match_path_exec(struct menu_q *, struct menu_q *,
- char *);
static int strsubmatch(char *, char *, int);
void
@@ -141,7 +139,8 @@ search_print_client(struct menu *mi, int list)
}
static void
-search_match_path(struct menu_q *menuq, struct menu_q *resultq, char *search, int flag)
+search_match_path_type(struct menu_q *menuq, struct menu_q *resultq,
+ char *search, int flag)
{
char pattern[PATH_MAX];
glob_t g;
@@ -162,16 +161,10 @@ search_match_path(struct menu_q *menuq, struct menu_q *resultq, char *search, in
globfree(&g);
}
-static void
-search_match_path_exec(struct menu_q *menuq, struct menu_q *resultq, char *search)
-{
- return(search_match_path(menuq, resultq, search, PATH_EXEC));
-}
-
void
-search_match_path_any(struct menu_q *menuq, struct menu_q *resultq, char *search)
+search_match_path(struct menu_q *menuq, struct menu_q *resultq, char *search)
{
- return(search_match_path(menuq, resultq, search, PATH_ANY));
+ return(search_match_path_type(menuq, resultq, search, PATH_ANY));
}
void
@@ -208,14 +201,9 @@ search_match_exec(struct menu_q *menuq, struct menu_q *resultq, char *search)
if (mj == NULL)
TAILQ_INSERT_TAIL(resultq, mi, resultentry);
}
-}
-void
-search_match_exec_path(struct menu_q *menuq, struct menu_q *resultq, char *search)
-{
- search_match_exec(menuq, resultq, search);
if (TAILQ_EMPTY(resultq))
- search_match_path_exec(menuq, resultq, search);
+ search_match_path_type(menuq, resultq, search, PATH_EXEC);
}
static int