зеркало из https://github.com/github/putty.git
Use `default_port' rather than `22' when loading a default session.
[originally from svn r896]
This commit is contained in:
Родитель
7a79df8fe6
Коммит
9a31bb3905
4
plink.c
4
plink.c
|
@ -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 {
|
||||
|
|
Загрузка…
Ссылка в новой задаче