core: Fix default value of disable_xattrs
Sigh. Rather awful regression from https://github.com/ostreedev/ostree/pull/759 Closes: #775 Approved by: jlebon
This commit is contained in:
parent
b74e4e79cc
commit
c937305c0e
|
|
@ -2075,7 +2075,7 @@ reload_core_config (OstreeRepo *self,
|
||||||
|
|
||||||
/* See https://github.com/ostreedev/ostree/issues/758 */
|
/* See https://github.com/ostreedev/ostree/issues/758 */
|
||||||
if (!ot_keyfile_get_boolean_with_default (self->config, "core", "disable-xattrs",
|
if (!ot_keyfile_get_boolean_with_default (self->config, "core", "disable-xattrs",
|
||||||
TRUE, &self->disable_xattrs, error))
|
FALSE, &self->disable_xattrs, error))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
{ g_autofree char *tmp_expiry_seconds = NULL;
|
{ g_autofree char *tmp_expiry_seconds = NULL;
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ echo "1..4"
|
||||||
|
|
||||||
cd ${test_tmpdir}
|
cd ${test_tmpdir}
|
||||||
mkdir repo
|
mkdir repo
|
||||||
${OSTREE} init
|
ostree_repo_init repo
|
||||||
|
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# Test synchronicity of keyring file and remote
|
# Test synchronicity of keyring file and remote
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue