client: add 's:' to the list of recognized short options

This commit is contained in:
Daniel Eklöf 2019-12-14 13:07:19 +01:00
parent 9862d2c3a9
commit 4102f9d478
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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;