diff options
author | okan | 2016-12-01 18:44:09 +0000 |
---|---|---|
committer | okan | 2016-12-01 18:44:09 +0000 |
commit | 3e1ab95fb333a1c4cca76dfb5f2dc3bef7214bc2 (patch) | |
tree | 98891aedcb3406df79e0930b4dd5ac0dd9c8d14e /kbfunc.c | |
parent | a6fb2061c2a3151c71f40486b03a6a149af717c3 (diff) | |
download | cwm-3e1ab95fb333a1c4cca76dfb5f2dc3bef7214bc2.tar.gz |
Switch ssh menu to search_match_text; like group/window/cmd menus, use only a
substring match. The previous matching is only intended for the exec menus.
Diffstat (limited to 'kbfunc.c')
-rw-r--r-- | kbfunc.c | 4 |
1 files changed, 2 insertions, 2 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: kbfunc.c,v 1.138 2016/12/01 18:17:52 okan Exp $ + * $OpenBSD: kbfunc.c,v 1.139 2016/12/01 18:44:09 okan Exp $ */ #include <sys/types.h> @@ -526,7 +526,7 @@ kbfunc_menu_ssh(void *ctx, union arg *arg, enum xev xev) (void)fclose(fp); menu: if ((mi = menu_filter(sc, &menuq, "ssh", NULL, (CWM_MENU_DUMMY), - search_match_exec, NULL)) != NULL) { + search_match_text, NULL)) != NULL) { if (mi->text[0] == '\0') goto out; l = snprintf(path, sizeof(path), "%s -T '[ssh] %s' -e ssh %s", |