Ticket #3091 (closed defect: fixed)
iso9660 helper: fix filenames truncating in ISO file listing
Reported by: | post-factum | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 4.8.11 |
Component: | mc-vfs | Version: | master |
Keywords: | iso9660 helper | Cc: | |
Blocked By: | Blocking: | ||
Branch state: | no branch | Votes for changeset: |
Description
Using
len=$((${#nm} - 2))
in xorriso_list() function results in filenames truncating like that is shown with fig. 1.
Replacing abovementioned string with
len=$((${#nm} - 1))
fixes the issue (fig. 2).
Pull request is here: https://github.com/MidnightCommander/mc/pull/31
Attachments
Change History
comment:1 Changed 11 years ago by andrew_b
- Blocked By 3051 added
- Milestone changed from Future Releases to 4.8.11
comment:3 Changed 11 years ago by andrew_b
- Status changed from new to closed
- Resolution set to fixed
Applied as [97d7bdfd77e3e7ffa4eac4307b8a47174aef7110].
Note: See
TracTickets for help on using
tickets.
Fig. 1