diff options
author | okan | 2013-04-05 17:36:02 +0000 |
---|---|---|
committer | okan | 2013-04-05 17:36:02 +0000 |
commit | f266f52c9db95d0361a427c672323017a083e9d6 (patch) | |
tree | c19329beb2f73b4378594965797eaa0d23e18cbc /search.c | |
parent | abd80b6d6d0b2c8c02a4b114c5b795c9491b085a (diff) | |
download | cwm-f266f52c9db95d0361a427c672323017a083e9d6.tar.gz |
add missing proto; replace magic number
Diffstat (limited to 'search.c')
-rw-r--r-- | search.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 |