Interpreting new libisofs error code ISO_RR_PATH_TOO_LONG

This commit is contained in:
Thomas Schmitt 2011-03-29 15:09:11 +00:00
parent 0f2b6f6c56
commit 45c1c8a862
2 changed files with 3 additions and 2 deletions

View File

@ -227,7 +227,8 @@ int Xorriso_tree_graft_node(struct XorrisO *xorriso, IsoImage *volume,
ex:;
if(ret<0) {
Xorriso_process_msg_queues(xorriso,0);
if(ret == ISO_RR_NAME_TOO_LONG || ret == ISO_RR_NAME_RESERVED)
if(ret == ISO_RR_NAME_TOO_LONG || ret == ISO_RR_NAME_RESERVED ||
ret == ISO_RR_PATH_TOO_LONG)
namept= nominal_target;
else
namept= nominal_source;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2011.03.26.203042"
#define Xorriso_timestamP "2011.03.29.150930"