diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-07-01 10:00:23 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-07-01 10:00:23 +0900 |
commit | c74d49d41c9e0fabeb1179dcabfb3137833ed831 (patch) | |
tree | d5406f4f6578181174e178c68ba320ac9395648a /src/interfaces/libpq/fe-auth.c | |
parent | 459c3cdb4ad8323bfe6bcae0186a3831e0c89c94 (diff) | |
download | postgresql-c74d49d41c9e0fabeb1179dcabfb3137833ed831.tar.gz postgresql-c74d49d41c9e0fabeb1179dcabfb3137833ed831.zip |
Fix many typos and inconsistencies
Author: Alexander Lakhin
Discussion: https://postgr.es/m/af27d1b3-a128-9d62-46e0-88f424397f44@gmail.com
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) |