Enabled verbous error reporting of iso_node_set_acl_text()

This commit is contained in:
Thomas Schmitt 2019-07-24 16:16:23 +02:00
parent 321a0476fa
commit e3ff5a971f
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2017 Thomas Schmitt, <scdbackup@gmx.net>
Copyright 2007-2019 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2 or later.
@ -2092,7 +2092,8 @@ int Xorriso_setfacl(struct XorrisO *xorriso, void *in_node, char *path,
if(ret<=0)
goto ex;
}
ret= iso_node_set_acl_text(node, access_text, default_text, 0);
ret= iso_node_set_acl_text(node, access_text, default_text, 4);
Xorriso_process_msg_queues(xorriso,0);
if(ret <= 0) {
Xorriso_report_iso_error(xorriso, "", ret,
"Error when setting ACL to image node",
@ -2107,7 +2108,6 @@ int Xorriso_setfacl(struct XorrisO *xorriso, void *in_node, char *path,
Xorriso_set_change_pending(xorriso, 0);
ret= 1;
ex:;
Xorriso_process_msg_queues(xorriso,0);
return(ret);
}

View File

@ -1 +1 @@
#define Xorriso_timestamP "2019.07.24.073750"
#define Xorriso_timestamP "2019.07.24.141555"