From 30abca4f301a3e851d020119f654586c56c70263 Mon Sep 17 00:00:00 2001 From: adnano Date: Sun, 5 May 2024 10:13:01 -0400 Subject: Don't ignore stdin in password mode This makes password mode work for wmenu and wmenu-run without special cases. --- wmenu.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'wmenu.c') diff --git a/wmenu.c b/wmenu.c index 0a3d0b0..e7d37d9 100644 --- a/wmenu.c +++ b/wmenu.c @@ -19,9 +19,7 @@ static void read_items(struct menu *menu) { int main(int argc, char *argv[]) { struct menu *menu = menu_create(); menu_getopts(menu, argc, argv); - if (!menu->passwd) { - read_items(menu); - } + read_items(menu); int status = menu_run(menu); menu_destroy(menu); return status; -- cgit v1.2.3