From mrmazda at earthlink.net Mon Jul 1 18:34:11 2013 From: mrmazda at earthlink.net (Felix Miata) Date: Mon, 01 Jul 2013 14:34:11 -0400 Subject: Wierd date behavior in 4.8.7 FTP panel Message-ID: <51D1CBA3.3090600@earthlink.net> On a sort by date list in right panel populated from ftp connection to a local system, at the bottom is a file that was last written 2012-12-31 at 17:59 local time. It is listed in the panel as 2013-12-31 instead of with a time stamp. I see the correct time stamp via a telnet login. My local offset was -0500 at last write time, is -0400 currently. This system's BIOS clock runs local time, but the other machine has no option for other than running its clock on UTC. -- "The wise are known for their understanding, and pleasant words are persuasive." Proverbs 16:21 (New Living Translation) Team OS/2 ** Reg. Linux User #211409 ** a11y rocks! Felix Miata *** http://fm.no-ip.com/ From slyfox at inbox.ru Wed Jul 3 07:25:49 2013 From: slyfox at inbox.ru (slyfox at inbox.ru) Date: Wed, 3 Jul 2013 10:25:49 +0300 Subject: [PATCH] configure.ac: warn about unknown '--with-' / '--enable-' options Message-ID: <1372836349-6672-1-git-send-email-slyfox@inbox.ru> From: Sergei Trofimovich As we use 'AC_CONFIG_SUBDIRS' macro for samba sources option checking is disabled for us. Before the patch: $ ./configure --with-i-have-misspelled-editor-for-edit ... # no warnings The patch enables warnings back only for top-level ./configure: $ ./configure --with-i-have-misspelled-editor-for-edit ... configure: WARNING: unrecognized options: --with-i-have-misspelled-editor-for-edit Signed-off-by: Sergei Trofimovich --- configure.ac | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configure.ac b/configure.ac index c12c2e7..5581a14 100644 --- a/configure.ac +++ b/configure.ac @@ -652,3 +652,12 @@ Configuration: Support for charset: ${charset_msg} Search type: ${SEARCH_TYPE} ]) + +dnl option checking is disable by default due to AC_CONFIG_SUBDIRS +dnl we enable it back for top-level ./configure +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + fatal) AC_MSG_ERROR([unrecognized options: $ac_unrecognized_opts]) ;; + *) AC_MSG_WARN( [unrecognized options: $ac_unrecognized_opts]) ;; + esac +fi -- 1.8.2.1 From netuse at lavabit.com Thu Jul 4 10:21:53 2013 From: netuse at lavabit.com (Marco) Date: Thu, 4 Jul 2013 12:21:53 +0200 Subject: Navigation in directory hotlist In-Reply-To: <1371577524.316193798@f391.i.mail.ru> References: <20130523142832.GD18184@homerow> <20130606120947.GB13190@homerow> <1371577524.316193798@f391.i.mail.ru> Message-ID: <20130704102153.GA21227@homerow> On 2013?06?18 ????????? ?????????? wrote: > At the moment easiest way is navigation over first ten items by > pressing keys 0 .. 9. This approach has at least three issues. 1) No numbers are shown, which makes it hard to directly select a particular item. 2) Numbering starts with zero, why?? ?1? corresponds to the second entry and ?0? which is all the way on the other side of the keyboard corresponds to the first entry. That's not really intuitive. 3) Only 10 hotlist entries can be addressed. Anyway, thanks for the tip. I didn't know you can use the number keys. It's at least a slight improvement. Marco From mrmazda at earthlink.net Thu Jul 4 11:25:12 2013 From: mrmazda at earthlink.net (Felix Miata) Date: Thu, 04 Jul 2013 07:25:12 -0400 Subject: Navigation in directory hotlist In-Reply-To: <20130704102153.GA21227@homerow> References: <20130523142832.GD18184@homerow> <20130606120947.GB13190@homerow> <1371577524.316193798@f391.i.mail.ru> <20130704102153.GA21227@homerow> Message-ID: <51D55B98.30805@earthlink.net> On 2013-07-04 12:21 (GMT+0200) Marco composed: > 2) Numbering starts with zero, why?? ???1??? corresponds to the second > entry and ???0??? which is all the way on the other side of the keyboard > corresponds to the first entry. That's not really intuitive. It's actually expected by data entry people, bookkeepers and accountants. People with complete keyboards can use the same hand for all number keys without needing to look at what they are doing, and the right index finger for 7,4,1,0, which are all in the same column, same as a standard size adding machine or calculator. -- "The wise are known for their understanding, and pleasant words are persuasive." Proverbs 16:21 (New Living Translation) Team OS/2 ** Reg. Linux User #211409 ** a11y rocks! Felix Miata *** http://fm.no-ip.com/ From vda.linux at googlemail.com Wed Jul 10 11:54:22 2013 From: vda.linux at googlemail.com (Denys Vlasenko) Date: Wed, 10 Jul 2013 13:54:22 +0200 Subject: "(smbfs_fake_share_stat): don't access to free'd memory" wasn't needed Message-ID: - vfs_path_t *vpath = vfs_path_from_str (path); + vfs_path_t *vpath; + vpath = vfs_path_from_str (path); p = smbfs_get_path (&sc, vpath); vfs_path_free (vpath); - g_free (p); - if (p) + if (p != NULL) { memset (buf, 0, sizeof (*buf)); /* show this as dir */ buf->st_mode = (S_IFDIR | S_IRUSR | S_IRGRP | S_IROTH | S_IXUSR | S_IXGRP | S_IXOTH) & myumask; + g_free (p); return 0; } + g_free (p); return -1; There was no bug. "free(p); if (p) ..." is a valid code, since it doesn't access memory pointed to by p, it only looks at the value of the pointer p. From slavazanko at gmail.com Thu Jul 11 10:12:00 2013 From: slavazanko at gmail.com (Slava Zanko) Date: Thu, 11 Jul 2013 13:12:00 +0300 Subject: Midnight Commander 4.8.9 released Message-ID: <51DE84F0.8040009@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. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: OpenPGP digital signature URL: From ananasik at gmail.com Thu Jul 11 10:43:05 2013 From: ananasik at gmail.com (Victor Ananjevsky) Date: Thu, 11 Jul 2013 13:43:05 +0300 Subject: Midnight Commander 4.8.9 released In-Reply-To: <51DE84F0.8040009@gmail.com> References: <51DE84F0.8040009@gmail.com> Message-ID: <20130711134305.59738bb4631f64819ff236ca@gmail.com> 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 ?????: > 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