diff options
| author | Jari Vetoniemi <mailroxas@gmail.com> | 2014-04-13 01:26:53 +0300 | 
|---|---|---|
| committer | Jari Vetoniemi <mailroxas@gmail.com> | 2014-04-13 01:26:53 +0300 | 
| commit | 83d67f80c0d1935fff4e36bd63b2ac64c1dd2bc9 (patch) | |
| tree | fd80d1a4c51c36f9597e7206cb46f9660176588f /client | |
| parent | fc6539c1013d8187ed5a0dc3dfce65f3f626bf79 (diff) | |
| download | bemenu-83d67f80c0d1935fff4e36bd63b2ac64c1dd2bc9.tar.gz bemenu-83d67f80c0d1935fff4e36bd63b2ac64c1dd2bc9.tar.bz2 bemenu-83d67f80c0d1935fff4e36bd63b2ac64c1dd2bc9.zip  | |
Handle -l option by ignoring it
Diffstat (limited to 'client')
| -rw-r--r-- | client/client.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/client/client.c b/client/client.c index 13d9073..0e6bf15 100644 --- a/client/client.c +++ b/client/client.c @@ -91,7 +91,7 @@ static void parseArgs(int *argc, char **argv[])       * or parse them before running getopt.. */      for (;;) { -        int opt = getopt_long(*argc, *argv, "hviw:I:p:Ibf:m", opts, NULL); +        int opt = getopt_long(*argc, *argv, "hviw:l:I:p:Ibf:m", opts, NULL);          if (opt < 0)              break;  | 
