{
static char buf[18], *pname;
- strftime(buf, 18, "%d-%m-%Y %H:%M", localtime(&ent->t));
+ strftime(buf, 18, "%Y-%m-%d %H:%M", localtime(&ent->t));
pname = unescape(ent->name, namecols);
/* Directories are always shown on top */
sb->st_mode & 7, perms, sb->st_uid, (getpwuid(sb->st_uid))->pw_name, sb->st_gid, (getgrgid(sb->st_gid))->gr_name);
/* Show last access time */
- strftime(g_buf, 40, "%a %d-%b-%Y %T %z,%Z", localtime(&sb->st_atime));
+ strftime(g_buf, 40, "%a %b %d %T %Z %Y", localtime(&sb->st_atime));
dprintf(fd, "\n\n Access: %s", g_buf);
/* Show last modification time */
- strftime(g_buf, 40, "%a %d-%b-%Y %T %z,%Z", localtime(&sb->st_mtime));
+ strftime(g_buf, 40, "%a %b %d %T %Z %Y", localtime(&sb->st_mtime));
dprintf(fd, "\n Modify: %s", g_buf);
/* Show last status change time */
- strftime(g_buf, 40, "%a %d-%b-%Y %T %z,%Z", localtime(&sb->st_ctime));
+ strftime(g_buf, 40, "%a %b %d %T %Z %Y", localtime(&sb->st_ctime));
dprintf(fd, "\n Change: %s", g_buf);
if (S_ISREG(sb->st_mode)) {