Ticket #1450: FISH: timestamps don't show correctly
commit11928eeff0bc09ff8b0192286f9eb56131fc2d03
authorAlexander Moiseenko <imdagger@yandex.ru>
Wed, 25 Nov 2009 08:40:16 +0000 (25 10:40 +0200)
committerSlava Zanko <slavazanko@gmail.com>
Tue, 1 Dec 2009 19:49:12 +0000 (1 21:49 +0200)
treec5d81907dc04dc9030bf9f0e7400e23f7d7d22a3
parent92247810e5315a82c306605d33faf77efef96e80
Ticket #1450: FISH: timestamps don't show correctly

Test case:
1) Make FISH-connect to some host;
2) sort files by modification time;
3) will see older files (from previous year) as new files

For check, connect to same host and enter in command line:

ls -lt

Thanks for bugreport to Alexander Glyzov.

Fix issue:
Because first part of FISH-ls script is Perl script.
But localtime function returns dates like:
Fri Sep 18 10:40:28 2009

But in utilvfs.c is written: So both year and time is not allowed.
This commit fixed write format of date.

Signed-off-by: Slava Zanko <slavazanko@gmail.com>
vfs/fish.c