mirror of
https://github.com/containers/fuse-overlayfs.git
synced 2025-09-14 01:39:01 -04:00
Merge pull request #186 from rhatdan/debug
Add support for debug to match help
This commit is contained in:
commit
8b91e3fed3
3
main.c
3
main.c
@ -4952,7 +4952,8 @@ fuse_opt_proc (void *data, const char *arg, int key, struct fuse_args *outargs)
|
|||||||
return 1;
|
return 1;
|
||||||
if (strcmp (arg, "-V") == 0)
|
if (strcmp (arg, "-V") == 0)
|
||||||
return 1;
|
return 1;
|
||||||
if (strcmp (arg, "--debug") == 0)
|
if ((strcmp (arg, "--debug") == 0) || (strcmp (arg, "-d") == 0) ||
|
||||||
|
(strcmp (arg, "debug") == 0))
|
||||||
{
|
{
|
||||||
ovl_data->debug = 1;
|
ovl_data->debug = 1;
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user