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

[svn] Fix warning message text; mark the warning message as translatable.

This commit is contained in:
hniksic 2005-04-22 08:12:59 -07:00
parent e65a2cbff8
commit e09eb765f4
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-04-21 Hrvoje Niksic <hniksic@xemacs.org>
* gen_sslfunc.c (ssl_init): Fix warning message text; mark the
message as translatable.
2005-04-21 Hrvoje Niksic <hniksic@xemacs.org> 2005-04-21 Hrvoje Niksic <hniksic@xemacs.org>
* main.c (print_help): Print the EGD option outside the cluster of * main.c (print_help): Print the EGD option outside the cluster of

View File

@ -219,12 +219,14 @@ ssl_init ()
{ {
if (!can_validate) if (!can_validate)
{ {
logprintf (LOG_NOTQUIET, "Warrining validation of Server Cert not possible!\n"); logputs (LOG_NOTQUIET,
_("Warning: validation of server certificate not possible!\n"));
verify = SSL_VERIFY_NONE; verify = SSL_VERIFY_NONE;
} }
else else
{ {
/* break handshake if server cert is not valid but allow NO-Cert mode */ /* break handshake if server cert is not valid but allow
NO-Cert mode */
verify = SSL_VERIFY_PEER; verify = SSL_VERIFY_PEER;
} }
} }