aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--search.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/search.c b/search.c
index 1cb8252..ec7c059 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.29 2013/04/05 17:07:25 okan Exp $
+ * $OpenBSD: search.c,v 1.30 2013/04/05 17:36:02 okan Exp $
*/
#include <sys/param.h>
@@ -33,8 +33,11 @@
#include "calmwm.h"
-#define PATH_EXEC 0x1
+#define PATH_ANY 0x0001
+#define PATH_EXEC 0x0002
+static void search_match_path(struct menu_q *, struct menu_q *,
+ char *, int);
static int strsubmatch(char *, char *, int);
/*
@@ -198,7 +201,7 @@ search_match_path_exec(struct menu_q *menuq, struct menu_q *resultq, char *searc
void
search_match_path_any(struct menu_q *menuq, struct menu_q *resultq, char *search)
{
- return (search_match_path(menuq, resultq, search, 0));
+ return (search_match_path(menuq, resultq, search, PATH_ANY));
}
void