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

[svn] Make the message printed in ssl_init_prng translatable.

This commit is contained in:
hniksic 2001-12-05 17:15:05 -08:00
parent 0620ada923
commit f5d20aef32
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-12-06 Hrvoje Niksic <hniksic@arsdigita.com>
* gen_sslfunc.c (ssl_init_prng): Make the printed message
translatable.
2001-12-06 Hrvoje Niksic <hniksic@arsdigita.com>
* url.c (scheme_disable): New function.

View File

@ -105,7 +105,8 @@ ssl_init_prng (void)
if (RAND_status () == 0)
{
logprintf (LOG_NOTQUIET, "Could not seed OpenSSL PRNG; disabling SSL.\n");
logprintf (LOG_NOTQUIET,
_("Could not seed OpenSSL PRNG; disabling SSL.\n"));
scheme_disable (SCHEME_HTTPS);
}
#endif /* SSLEAY_VERSION_NUMBER >= 0x00905100 */