diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c
new file mode 100644
index 8927df4..c267f72
*** a/src/interfaces/libpq/fe-auth.c
--- b/src/interfaces/libpq/fe-auth.c
*************** pg_SSPI_continue(PGconn *conn)
*** 333,339 ****
  			 * authentication. Keep check in case it shows up with other
  			 * authentication methods later.
  			 */
! 			printfPQExpBuffer(&conn->errorMessage, "SSPI returned invalid number of output buffers\n");
  			return STATUS_ERROR;
  		}
  
--- 333,339 ----
  			 * authentication. Keep check in case it shows up with other
  			 * authentication methods later.
  			 */
! 			printfPQExpBuffer(&conn->errorMessage, libpq_gettext("SSPI returned invalid number of output buffers\n"));
  			return STATUS_ERROR;
  		}
  
*************** pg_fe_sendauth(AuthRequest areq, PGconn
*** 691,697 ****
  			if (pg_password_sendauth(conn, conn->pgpass, areq) != STATUS_OK)
  			{
  				printfPQExpBuffer(&conn->errorMessage,
! 					 "fe_sendauth: error sending password authentication\n");
  				return STATUS_ERROR;
  			}
  			break;
--- 691,697 ----
  			if (pg_password_sendauth(conn, conn->pgpass, areq) != STATUS_OK)
  			{
  				printfPQExpBuffer(&conn->errorMessage,
! 					 libpq_gettext("fe_sendauth: error sending password authentication\n"));
  				return STATUS_ERROR;
  			}
  			break;
