Ignore option nofail (bug 51521)
This commit is contained in:
parent
182e29206c
commit
5079a9a09e
@ -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).
|
||||||
|
@ -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:
|
||||||
|
Loading…
Reference in New Issue
Block a user