mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Optimize print entry
This commit is contained in:
parent
07437a897c
commit
7aa72ddd79
|
@ -3172,13 +3172,15 @@ static void printent(const struct entry *ent, uint namecols, bool sel)
|
||||||
|
|
||||||
static void printent_long(const struct entry *ent, uint namecols, bool sel)
|
static void printent_long(const struct entry *ent, uint namecols, bool sel)
|
||||||
{
|
{
|
||||||
char timebuf[18], permbuf[8] = " ", ind1 = '\0', ind2 = '\0', special = '\0';
|
char timebuf[18], permbuf[8], ind1 = '\0', ind2 = '\0', special = '\0';
|
||||||
|
|
||||||
/* Timestamp */
|
/* Timestamp */
|
||||||
strftime(timebuf, sizeof(timebuf), "%F %R", localtime(&ent->t));
|
strftime(timebuf, sizeof(timebuf), "%F %R", localtime(&ent->t));
|
||||||
//timebuf[sizeof(timebuf)-1] = '\0';
|
//timebuf[sizeof(timebuf)-1] = '\0';
|
||||||
|
|
||||||
/* Permissions */
|
/* Permissions */
|
||||||
|
permbuf[0] = permbuf[1] = permbuf[5] = ' ';
|
||||||
|
permbuf[6] = '\0';
|
||||||
permbuf[2] = '0' + ((ent->mode >> 6) & 7);
|
permbuf[2] = '0' + ((ent->mode >> 6) & 7);
|
||||||
permbuf[3] = '0' + ((ent->mode >> 3) & 7);
|
permbuf[3] = '0' + ((ent->mode >> 3) & 7);
|
||||||
permbuf[4] = '0' + (ent->mode & 7);
|
permbuf[4] = '0' + (ent->mode & 7);
|
||||||
|
|
Loading…
Reference in a new issue