commit 179192e22292f3bdcd19e8f9d6e9e1262970bf55
parent 28c8e4fb9e6da839d353be723be60bb7bf2ebcdb
Author: Yacine Hmito <yacine.hmito@gmail.com>
Date: Thu, 25 Feb 2016 21:49:53 +0100
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.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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;
}