diff options
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index bb04e27e2fe..ab227421b3b 100644 --- a/src/interfaces/libpq/fe-auth.c +++ b/src/interfaces/libpq/fe-auth.c @@ -717,7 +717,7 @@ pg_password_sendauth(PGconn *conn, const char *password, AuthRequest areq) const char *pwd_to_send; char md5Salt[4]; - /* Read the salt from the AuthenticationMD5 message. */ + /* Read the salt from the AuthenticationMD5Password message. */ if (areq == AUTH_REQ_MD5) { if (pqGetnchar(md5Salt, 4, conn)) @@ -897,7 +897,7 @@ pg_fe_sendauth(AuthRequest areq, int payloadlen, PGconn *conn) /* * No SSPI support. However, if we have GSSAPI but not SSPI * support, AUTH_REQ_SSPI will have been handled in the codepath - * for AUTH_REQ_GSSAPI above, so don't duplicate the case label in + * for AUTH_REQ_GSS above, so don't duplicate the case label in * that case. */ #if !defined(ENABLE_GSS) |