aboutsummaryrefslogtreecommitdiff
path: root/telnet.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-08-31 23:52:46 +0000
committerEric Andersen <andersen@codepoet.org>2000-08-31 23:52:46 +0000
commita3de24e85d0afabd61c11ac7ae92c591594e3297 (patch)
treed7cccddb40c09a4e3e55f6f801ba81c40775bc9f /telnet.c
parent1638488d26ef88e29ada0cb6faa12ac03c6705d5 (diff)
downloadbusybox-w32-a3de24e85d0afabd61c11ac7ae92c591594e3297.tar.gz
busybox-w32-a3de24e85d0afabd61c11ac7ae92c591594e3297.tar.bz2
busybox-w32-a3de24e85d0afabd61c11ac7ae92c591594e3297.zip
Fix spelling error
-Erik
Diffstat (limited to '')
-rw-r--r--telnet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/telnet.c b/telnet.c
index 40cf7a128..cf55de6af 100644
--- a/telnet.c
+++ b/telnet.c
@@ -595,7 +595,7 @@ static struct in_addr getserver(char * host)
595 struct hostent * he; 595 struct hostent * he;
596 if ((he = gethostbyname(host)) == NULL) 596 if ((he = gethostbyname(host)) == NULL)
597 { 597 {
598 fatalError("%s: Unkonwn host\n", host); 598 fatalError("%s: Unknown host\n", host);
599 } 599 }
600 memcpy(&addr, he->h_addr, sizeof addr); 600 memcpy(&addr, he->h_addr, sizeof addr);
601 601