diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-08-31 23:52:46 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-08-31 23:52:46 +0000 |
commit | a3de24e85d0afabd61c11ac7ae92c591594e3297 (patch) | |
tree | d7cccddb40c09a4e3e55f6f801ba81c40775bc9f | |
parent | 1638488d26ef88e29ada0cb6faa12ac03c6705d5 (diff) | |
download | busybox-a3de24e85d0afabd61c11ac7ae92c591594e3297.tar.gz |
Fix spelling error
-Erik
-rw-r--r-- | networking/telnet.c | 2 | ||||
-rw-r--r-- | telnet.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/networking/telnet.c b/networking/telnet.c index 40cf7a128..cf55de6af 100644 --- a/networking/telnet.c +++ b/networking/telnet.c @@ -595,7 +595,7 @@ static struct in_addr getserver(char * host) struct hostent * he; if ((he = gethostbyname(host)) == NULL) { - fatalError("%s: Unkonwn host\n", host); + fatalError("%s: Unknown host\n", host); } memcpy(&addr, he->h_addr, sizeof addr); @@ -595,7 +595,7 @@ static struct in_addr getserver(char * host) struct hostent * he; if ((he = gethostbyname(host)) == NULL) { - fatalError("%s: Unkonwn host\n", host); + fatalError("%s: Unknown host\n", host); } memcpy(&addr, he->h_addr, sizeof addr); |