Consistent use of menuq_add for ssh menu.

This commit is contained in:
okan 2016-12-06 21:09:22 +00:00
parent 2ae4797297
commit 89e4e7fb14

View File

@ -520,7 +520,7 @@ kbfunc_menu_ssh(void *ctx, union arg *arg, enum xev xev)
if (p - buf + 1 > sizeof(hostbuf)) if (p - buf + 1 > sizeof(hostbuf))
continue; continue;
(void)strlcpy(hostbuf, buf, p - buf + 1); (void)strlcpy(hostbuf, buf, p - buf + 1);
menuq_add(&menuq, NULL, hostbuf); menuq_add(&menuq, NULL, "%s", hostbuf);
} }
free(lbuf); free(lbuf);
(void)fclose(fp); (void)fclose(fp);