hi

extfs with xorriso doesn't work. patch below fixed this issue


--- mc-4.8.9/src/vfs/extfs/helpers/iso9660.in.orig      2013-07-09 
15:41:49.000000000 +0300
+++ mc-4.8.9/src/vfs/extfs/helpers/iso9660.in   2013-07-11 13:37:51.731825416 
+0300
@@ -39,11 +39,11 @@
     fi
     local dir attr ln usr gr sz dt1 dt2 dt3 nm len name
     dir="$2"
-    $XORRISO -dev stdio:"$1" -cd "$dir" -lsl 2> /dev/null | @GREP@ "^[-d]" | \
+    $XORRISO -dev stdio:"$1" -lsl "$dir" 2> /dev/null | @GREP@ "^[-d]" | \
     while read attr ln usr gr sz dt1 dt2 dt3 nm ; do
-        len=$((${#nm} - 2))
+        len=$((${#nm} - 1))
         name=$(printf "$nm" | cut -c2-$len)  # remove quotes
-        if test $(printf "$nm" | cut -c1-2) != "d"; then
+        if test $(printf "%s" "$attr" | cut -c1) != "d"; then
             printf "%s %s %s %s %s %s %s %s %s/%s\n" "$attr" "$ln" "$usr" 
"$gr" "$sz" "$dt1" "$dt2" "$dt3" "$dir" "$name"
         else
             xorriso_list "$1" "$dir/$name"



В Thu, 11 Jul 2013 13:12:00 +0300
Slava Zanko <slavaza...@gmail.com> писал:

> Hi all,
> 
> mc-4.8.9 now released.
> 
> Download page: http://www.midnight-commander.org/downloads?order=id&desc=1
> 
> 
> Major changes and fixes since 4.8.8
> (https://www.midnight-commander.org/wiki/NEWS-4.8.9):
> 
> - VFS
> 
>   * extfs: support unrar-5 (#3015)
>   * extfs: use xorriso (if exists) for writing into ISO images (#3027)
> 
> - Editor
> 
>   * Support unlimited file size (#1743)
> 
> - Misc
> 
>   * Lot of code cleanups (#2990, #2071, #2164, #2998, #3003, #3005, #3022)
>   * Display additional info while viewing (by F3) *.iso files (#2006)
>   * New skins:
>     - modarin256: set of 256-color skins from Oliver Lange (#2737)
> 
> - Fixes
> 
>   * Fail to link if system lib does not contain strverscmp (#2992)
>   * Segfault when mc's temporary directory doesn't belong to the correct user 
> (#3021)
>   * Race condition when creating temporary directory (#3025)
>   * Mouse doesn't work in screen and tmux (#3011)
>   * Incorrect file size in copy/move overwrite query dialog (#3000)
>   * Garbage in subshell prompt (#3001)
>   * Incorrect WLabel redraw after text change (#2991)
>   * Find File: "All charsets" options don't work (#3026)
>   * When an unknown key is pressed, it is interpreted as garbage (#2988)
>   * Segfault on creating new file in external editor (#3020)
>   * Rotating dash is not removed when mc finishes reading the directory 
> (#2163)
>   * mcedit: word completion failed if word to be completed is begun from 
> begin of file (#2245)
>   * mcview: broken switch between raw and parse modes (#2968)
>   * Hex viewer: continue search doesn't work (#2706)
>   * sftpfs: broken SSH aliases (#2923)
> 
> 
> -- 
> WBR, dev team.
> 


-- 
Victor Ananjevsky <anana...@gmail.com>
_______________________________________________
mc-devel mailing list
https://mail.gnome.org/mailman/listinfo/mc-devel

Reply via email to