Ignore option nofail (bug 51521)

This commit is contained in:
wbaumann 2017-07-22 18:32:59 +00:00
parent 182e29206c
commit 5079a9a09e
2 changed files with 7 additions and 0 deletions

View File

@ -1,6 +1,10 @@
ChangeLog for davfs2 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) 2017-01-21 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, is_busy: * cache.c, is_busy:
Fix infinite loop (bug #50083). Fix infinite loop (bug #50083).

View File

@ -1542,6 +1542,7 @@ get_options(dav_args *args, char *option)
AUTO, AUTO,
NOAUTO, NOAUTO,
COMMENT, COMMENT,
NOFAIL,
DEFAULTS, DEFAULTS,
END END
}; };
@ -1571,6 +1572,7 @@ get_options(dav_args *args, char *option)
[AUTO] = "auto", [AUTO] = "auto",
[NOAUTO] = "noauto", [NOAUTO] = "noauto",
[COMMENT] = "comment", [COMMENT] = "comment",
[NOFAIL] = "nofail",
[DEFAULTS] = "defaults", [DEFAULTS] = "defaults",
[END] = NULL [END] = NULL
}; };
@ -1671,6 +1673,7 @@ get_options(dav_args *args, char *option)
case AUTO: case AUTO:
case NOAUTO: case NOAUTO:
case COMMENT: case COMMENT:
case NOFAIL:
case DEFAULTS: case DEFAULTS:
break; break;
default: default: