Use `default_port' rather than `22' when loading a default session.

[originally from svn r896]
This commit is contained in:
Simon Tatham 2001-01-24 14:55:48 +00:00
Родитель 7a79df8fe6
Коммит 9a31bb3905
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -387,7 +387,7 @@ int main(int argc, char **argv) {
/* No settings for this host; use defaults */
strncpy(cfg.host, p, sizeof(cfg.host)-1);
cfg.host[sizeof(cfg.host)-1] = '\0';
cfg.port = 22;
cfg.port = default_port;
} else
cfg = cfg2;
} else {
@ -396,7 +396,7 @@ int main(int argc, char **argv) {
cfg.username[sizeof(cfg.username)-1] = '\0';
strncpy(cfg.host, r, sizeof(cfg.host)-1);
cfg.host[sizeof(cfg.host)-1] = '\0';
cfg.port = 22;
cfg.port = default_port;
}
}
} else {