Commit c8041474 authored by Peter Eisentraut's avatar Peter Eisentraut

Add missing gettext calls for some SSL errors.

parent 70bc947d
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/libpq/be-secure.c,v 1.71 2006/07/14 14:52:19 momjian Exp $ * $PostgreSQL: pgsql/src/backend/libpq/be-secure.c,v 1.72 2006/09/04 14:57:27 petere Exp $
* *
* Since the server static private key ($DataDir/server.key) * Since the server static private key ($DataDir/server.key)
* will normally be stored unencrypted so that the database * will normally be stored unencrypted so that the database
...@@ -986,11 +986,11 @@ SSLerrmessage(void) ...@@ -986,11 +986,11 @@ SSLerrmessage(void)
errcode = ERR_get_error(); errcode = ERR_get_error();
if (errcode == 0) if (errcode == 0)
return "No SSL error reported"; return _("no SSL error reported");
errreason = ERR_reason_error_string(errcode); errreason = ERR_reason_error_string(errcode);
if (errreason != NULL) if (errreason != NULL)
return errreason; return errreason;
snprintf(errbuf, sizeof(errbuf), "SSL error code %lu", errcode); snprintf(errbuf, sizeof(errbuf), _("SSL error code %lu"), errcode);
return errbuf; return errbuf;
} }
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.85 2006/07/14 16:59:19 tgl Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.86 2006/09/04 14:57:27 petere Exp $
* *
* NOTES * NOTES
* [ Most of these notes are wrong/obsolete, but perhaps not all ] * [ Most of these notes are wrong/obsolete, but perhaps not all ]
...@@ -1000,7 +1000,7 @@ close_SSL(PGconn *conn) ...@@ -1000,7 +1000,7 @@ close_SSL(PGconn *conn)
* return NULL if it doesn't recognize the error code. We don't * return NULL if it doesn't recognize the error code. We don't
* want to return NULL ever. * want to return NULL ever.
*/ */
static char ssl_nomem[] = "Out of memory allocating error description"; static char ssl_nomem[] = "out of memory allocating error description";
#define SSL_ERR_LEN 128 #define SSL_ERR_LEN 128
...@@ -1017,7 +1017,7 @@ SSLerrmessage(void) ...@@ -1017,7 +1017,7 @@ SSLerrmessage(void)
errcode = ERR_get_error(); errcode = ERR_get_error();
if (errcode == 0) if (errcode == 0)
{ {
strcpy(errbuf, "No SSL error reported"); snprintf(errbuf, SSL_ERR_LEN, libpq_gettext("no SSL error reported"));
return errbuf; return errbuf;
} }
errreason = ERR_reason_error_string(errcode); errreason = ERR_reason_error_string(errcode);
...@@ -1027,7 +1027,7 @@ SSLerrmessage(void) ...@@ -1027,7 +1027,7 @@ SSLerrmessage(void)
errbuf[SSL_ERR_LEN - 1] = '\0'; errbuf[SSL_ERR_LEN - 1] = '\0';
return errbuf; return errbuf;
} }
snprintf(errbuf, SSL_ERR_LEN, "SSL error code %lu", errcode); snprintf(errbuf, SSL_ERR_LEN, libpq_gettext("SSL error code %lu"), errcode);
return errbuf; return errbuf;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment