1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Use a more standard error message.

This commit is contained in:
hniksic 2003-11-10 19:19:33 -08:00
parent 9e5222bd7c
commit 1d0ab81f37
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-11-11 Hrvoje Niksic <hniksic@xemacs.org>
* host.c (host_errstr): Use the more standard message "Unknown
host".
2003-11-10 Hrvoje Niksic <hniksic@xemacs.org>
* connect.c (connect_to_host): Use that flag to decide whether to

View File

@ -353,7 +353,7 @@ host_errstr (int error)
|| error == NO_RECOVERY
|| error == NO_DATA
|| error == NO_ADDRESS)
return _("Host not found");
return _("Unknown host");
else if (error == TRY_AGAIN)
/* Message modeled after what gai_strerror returns in similar
circumstances. */