Ticket #4326 (closed defect: fixed)

Opened 2 years ago

Last modified 2 years ago

Cannot parse: /usr/bin/isoinfo

Reported by: asy Owned by: andrew_b
Priority: major Milestone: 4.8.28
Component: mc-vfs Version: 4.8.27
Keywords: Cc:
Blocked By: Blocking:
Branch state: merged Votes for changeset: committed-master

Description

once upon a time, when viewing the iso, an error "cannot parse: /usr/bin/isoinfo" began to appear

The fix:

--- iso9660.bak 2022-01-09 14:55:41.368583261 +0400
+++ iso9660     2022-01-09 14:54:04.689383836 +0400
@@ -93,7 +93,7 @@

 # tested to comply with isoinfo 2.0's output
 test_iso () {
-    which isoinfo 2>/dev/null || (echo "isoinfo not found" >&2;  return 1)
+    which isoinfo 2>/dev/null >/dev/null || (echo "isoinfo not found" >&2;  return 1)

     CHARSET=$(locale charmap 2>/dev/null)
     if test -z "$CHARSET"; then

Change History

comment:1 Changed 2 years ago by andrew_b

  • Status changed from new to accepted
  • Owner set to andrew_b
  • Branch state changed from no branch to on review
  • Milestone changed from Future Releases to 4.8.28

comment:2 Changed 2 years ago by andrew_b

  • Votes for changeset set to andrew_b
  • Branch state changed from on review to approved

comment:3 Changed 2 years ago by andrew_b

  • Status changed from accepted to testing
  • Votes for changeset changed from andrew_b to committed-master
  • Resolution set to fixed
  • Branch state changed from approved to merged

comment:4 Changed 2 years ago by andrew_b

  • Status changed from testing to closed
Note: See TracTickets for help on using tickets.