Преглед изворни кода

Fix #684: support path appended to hostname

master
Arun Prakash Jana пре 4 година
родитељ
комит
f4ff4b0793
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 измењених фајлова са 8 додато и 1 уклоњено
  1. +8
    -1
      src/nnn.c

+ 8
- 1
src/nnn.c Прегледај датотеку

@@ -4027,8 +4027,15 @@ static bool remote_mount(char *newpath)

/* Convert "Host" to "Host:" */
size_t len = xstrlen(tmp);
bool path = FALSE;

if (tmp[len - 1] != ':') { /* Append ':' if missing */
for (size_t count = 0; count < len; ++count)
if (tmp[count] == ':') {
path = TRUE;
break;
}

if (!path) { /* Append ':' if missing */
tmp[len] = ':';
tmp[len + 1] = '\0';
}


Loading…
Откажи
Сачувај