Explorar el Código

Show target file size in list mode

master
Arun Prakash Jana hace 5 años
padre
commit
72668069ed
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: A75979F35C080412
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c Ver fichero

@@ -4369,7 +4369,7 @@ static int dentfill(char *path, struct entry **dents)
if (!flags && dp->d_type == DT_LNK) {
/* Do not add sizes for links */
dentp->mode = (sb.st_mode & ~S_IFMT) | S_IFLNK;
dentp->size = 0;
dentp->size = g_listpath ? sb.st_size : 0;
} else {
dentp->mode = sb.st_mode;
dentp->size = sb.st_size;


Cargando…
Cancelar
Guardar