diff options
-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) | |||
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 | ||
@@ -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 | ||