Explorar el Código

Fix symlink to dir indicator in detail mode

master
Arun Prakash Jana hace 4 años
padre
commit
c58434d078
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 2 adiciones y 1 borrados
  1. +2
    -1
      src/nnn.c

+ 2
- 1
src/nnn.c Ver fichero

@@ -3305,7 +3305,8 @@ static void printent_long(const struct entry *ent, uint namecols, bool sel)
break;
case S_IFLNK:
ln = TRUE;
ind1 = ind2 = '@'; // fallthrough
ind1 = '@';
ind2 = (ent->flags & DIR_OR_LINK_TO_DIR) ? '/' : '@'; // fallthrough
case S_IFSOCK:
if (!ind1)
ind1 = ind2 = '='; // fallthrough


Cargando…
Cancelar
Guardar