You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you enable logging in a DSN, when you click on the 'Test connection' button, several log sentences include the connection string without hiding the password property.
In the drvconn.c file, the FORCE_PASSWORD_DISPLAY flag is defined:
#define FORCE_PASSWORD_DISPLAY
#define NULL_IF_NULL(a) (a ? a : "(NULL)")
So every time the flag is checked to determine if the password must be hidden, the connection string will not be hidden.
If you enable logging in a DSN, when you click on the 'Test connection' button, several log sentences include the connection string without hiding the password property.
In the
drvconn.c
file, the FORCE_PASSWORD_DISPLAY flag is defined:So every time the flag is checked to determine if the password must be hidden, the connection string will not be hidden.
I found the following three cases:
PGAPI_DriverConnect
method:dconn_get_attributes
method:I assume that this is not the expected behavior.
What do you think?
Regard,
Carlos
The text was updated successfully, but these errors were encountered: