From 179192e22292f3bdcd19e8f9d6e9e1262970bf55 Mon Sep 17 00:00:00 2001 From: Yacine Hmito Date: Thu, 25 Feb 2016 21:49:53 +0100 Subject: [PATCH] Removed p as a valid CLI option The get-socketpath long option had an undocumented short alternative as `p`. It has been removed. However, the code in the options array is still the 'p' char. --- sway/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/main.c b/sway/main.c index db2ed856..442d36ee 100644 --- a/sway/main.c +++ b/sway/main.c @@ -103,7 +103,7 @@ int main(int argc, char **argv) { int c; while (1) { int option_index = 0; - c = getopt_long(argc, argv, "hCdvVpc:", long_options, &option_index); + c = getopt_long(argc, argv, "hCdvVc:", long_options, &option_index); if (c == -1) { break; }