1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Add -rlogin to Plink, for orthogonality (and because I documented it

yesterday!).

[originally from svn r1462]
This commit is contained in:
Simon Tatham 2001-12-07 20:36:56 +00:00
parent fc2a4f845d
commit 5d2488a58e

View File

@ -452,6 +452,9 @@ int main(int argc, char **argv)
} else if (!strcmp(p, "-telnet")) {
default_protocol = cfg.protocol = PROT_TELNET;
default_port = cfg.port = 23;
} else if (!strcmp(p, "-rlogin")) {
default_protocol = cfg.protocol = PROT_RLOGIN;
default_port = cfg.port = 513;
} else if (!strcmp(p, "-raw")) {
default_protocol = cfg.protocol = PROT_RAW;
} else if (!strcmp(p, "-v")) {