Skip to content
Snippets Groups Projects
Commit a64a2c55 authored by Stephen R. van den Berg's avatar Stephen R. van den Berg
Browse files

pgsql: Make syntax 8.0 compatible.

parent e8b500f4
No related branches found
No related tags found
No related merge requests found
...@@ -723,7 +723,7 @@ private void procmessage() { ...@@ -723,7 +723,7 @@ private void procmessage() {
object cs = ci->start(); object cs = ci->start();
CHAIN(cs)->add_int8('p')->add_hstring(msg, 4, 4); CHAIN(cs)->add_int8('p')->add_hstring(msg, 4, 4);
cs->sendcmd(SENDOUT); // No flushing, PostgreSQL 9.4 disapproves cs->sendcmd(SENDOUT); // No flushing, PostgreSQL 9.4 disapproves
} };
PD("Authentication "); PD("Authentication ");
msglen-=4+4; msglen-=4+4;
int authtype, k; int authtype, k;
...@@ -802,7 +802,7 @@ private void procmessage() { ...@@ -802,7 +802,7 @@ private void procmessage() {
#endif #endif
} }
if (k) { if (k) {
cnonce = MIME.encode_base64(Random.System().random_string(18)); cnonce = MIME.encode_base64(random_string(18));
word = "n,,n=,r=" + cnonce; word = "n,,n=,r=" + cnonce;
authresponse(({ authresponse(({
"SCRAM-SHA-256", 0, sprintf("%4c", sizeof(word)), word "SCRAM-SHA-256", 0, sprintf("%4c", sizeof(word)), word
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment