projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
| inline |
side by side
(parent:
6d16f9d
)
Fix incorrect struct reference in comment
author
Daniel Gustafsson
<
[email protected]
>
Wed, 23 Oct 2024 14:13:28 +0000
(16:13 +0200)
committer
Daniel Gustafsson
<
[email protected]
>
Wed, 23 Oct 2024 14:13:28 +0000
(16:13 +0200)
SASL frontend mechanisms are implemented with pg_fe_sasl_mech and
not the _be_ variant which is the backend implementation. Spotted
while reading adjacent code.
src/interfaces/libpq/fe-auth-sasl.h
|
blob
|
blame
|
history
diff --git
a/src/interfaces/libpq/fe-auth-sasl.h
b/src/interfaces/libpq/fe-auth-sasl.h
index 4eecf53a1503097d25dbec3518c55fc61ef83fdb..258bfd0564fcffefa0c985e5022c8308c885f05a 100644
(file)
--- a/
src/interfaces/libpq/fe-auth-sasl.h
+++ b/
src/interfaces/libpq/fe-auth-sasl.h
@@
-35,7
+35,7
@@
typedef enum
/*
* Frontend SASL mechanism callbacks.
*
- * To implement a frontend mechanism, declare a pg_
b
e_sasl_mech struct with
+ * To implement a frontend mechanism, declare a pg_
f
e_sasl_mech struct with
* appropriate callback implementations, then hook it into conn->sasl during
* pg_SASL_init()'s mechanism negotiation.
*/