Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'telnet.c')
-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)
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);