]> sjero.net Git - wget/commitdiff
[svn] Fix warning message text; mark the warning message as translatable.
authorhniksic <devnull@localhost>
Fri, 22 Apr 2005 15:12:59 +0000 (08:12 -0700)
committerhniksic <devnull@localhost>
Fri, 22 Apr 2005 15:12:59 +0000 (08:12 -0700)
src/ChangeLog
src/gen_sslfunc.c

index d4ea3d072fcc0f5faf0d555dee534f64fd276c17..61f178f3454cb03e668e1be112448711c890e956 100644 (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>
 
        * main.c (print_help): Print the EGD option outside the cluster of
index 5b13f992a5831350f3208cdb386f1e6ef850db0a..44b5414a22a7c7a6d12f6c5faf1b2f68361fa36f 100644 (file)
@@ -219,12 +219,14 @@ ssl_init ()
     {
       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;
        }
      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;
        }
     }