Ignore option nofail (bug 51521)
This commit is contained in:
parent
182e29206c
commit
5079a9a09e
@ -1,6 +1,10 @@
|
||||
ChangeLog for davfs2
|
||||
--------------------
|
||||
|
||||
2017-07-22 Werner Baumann (werner.baumann@onlinehome.de)
|
||||
* mount_davfs.c, get_options:
|
||||
Ignore option "nofail" (fixes bug #51521).
|
||||
|
||||
2017-01-21 Werner Baumann (werner.baumann@onlinehome.de)
|
||||
* cache.c, is_busy:
|
||||
Fix infinite loop (bug #50083).
|
||||
|
@ -1542,6 +1542,7 @@ get_options(dav_args *args, char *option)
|
||||
AUTO,
|
||||
NOAUTO,
|
||||
COMMENT,
|
||||
NOFAIL,
|
||||
DEFAULTS,
|
||||
END
|
||||
};
|
||||
@ -1571,6 +1572,7 @@ get_options(dav_args *args, char *option)
|
||||
[AUTO] = "auto",
|
||||
[NOAUTO] = "noauto",
|
||||
[COMMENT] = "comment",
|
||||
[NOFAIL] = "nofail",
|
||||
[DEFAULTS] = "defaults",
|
||||
[END] = NULL
|
||||
};
|
||||
@ -1671,6 +1673,7 @@ get_options(dav_args *args, char *option)
|
||||
case AUTO:
|
||||
case NOAUTO:
|
||||
case COMMENT:
|
||||
case NOFAIL:
|
||||
case DEFAULTS:
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user