aboutsummaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authoradnano <me@adnano.co>2024-05-04 21:41:21 -0400
committeradnano <me@adnano.co>2024-05-04 21:41:21 -0400
commitc05ab7520b452ee3b8bd974a18511dc370cbeabe (patch)
tree6983a51d1fdc7f45cf9b97c7957b81ac8b0fc836 /menu.c
parent81d46e39120bcb7c24cec2105e05f3524e8bd548 (diff)
downloadwmenu-c05ab7520b452ee3b8bd974a18511dc370cbeabe.tar.gz
Remove wmenu -P flag
This flag causes some issues with wmenu-run. It will be revisited in the next release.
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/menu.c b/menu.c
index baa3061..3e8f9be 100644
--- a/menu.c
+++ b/menu.c
@@ -89,7 +89,7 @@ void menu_getopts(struct menu *menu, int argc, char *argv[]) {
"\t[-N color] [-n color] [-M color] [-m color] [-S color] [-s color]\n";
int opt;
- while ((opt = getopt(argc, argv, "bhiPvf:l:o:p:N:n:M:m:S:s:")) != -1) {
+ while ((opt = getopt(argc, argv, "bhivf:l:o:p:N:n:M:m:S:s:")) != -1) {
switch (opt) {
case 'b':
menu->bottom = true;
@@ -97,9 +97,6 @@ void menu_getopts(struct menu *menu, int argc, char *argv[]) {
case 'i':
menu->strncmp = strncasecmp;
break;
- case 'P':
- menu->passwd = true;
- break;
case 'v':
puts("wmenu " VERSION);
exit(EXIT_SUCCESS);