Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd112ea4

Browse files
committed
libpq: Remove a gettext marker
This one error message is just a workaround for a missing OpenSSLerror string. But OpenSSL does not have gettext support, so we don'tneed to provide it in our workaround either. That way, theuser-facing behavior is consistent whether the user has a fixedOpenSSL or not.
1 parentf376996 commitd112ea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/interfaces/libpq/fe-secure-openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1753,7 +1753,7 @@ SSLerrmessage(unsigned long ecode)
17531753
if (ERR_GET_LIB(ecode)==ERR_LIB_SSL&&
17541754
ERR_GET_REASON(ecode)==SSL_AD_REASON_OFFSET+SSL_AD_NO_APPLICATION_PROTOCOL)
17551755
{
1756-
snprintf(errbuf,SSL_ERR_LEN,libpq_gettext("no application protocol"));
1756+
snprintf(errbuf,SSL_ERR_LEN,"no application protocol");
17571757
returnerrbuf;
17581758
}
17591759
#endif

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp