From 4102f9d4781d17af374a47b0dc3b86ce8f266127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 14 Dec 2019 13:07:19 +0100 Subject: [PATCH] client: add 's:' to the list of recognized short options --- client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.c b/client.c index ecb850f6..60d6b529 100644 --- a/client.c +++ b/client.c @@ -57,7 +57,7 @@ main(int argc, char *const *argv) const char *server_socket_path = NULL; while (true) { - int c = getopt_long(argc, argv, ":t:hv", longopts, NULL); + int c = getopt_long(argc, argv, ":t:s:hv", longopts, NULL); if (c == -1) break;