Changeset: cb0aa1c0e0eb for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cb0aa1c0e0eb
Modified Files:
        sql/server/sql_parser.y
Branch: remote_auth
Log Message:

Assume that if no password is given, it is encrypted


diffs (12 lines):

diff --git a/sql/server/sql_parser.y b/sql/server/sql_parser.y
--- a/sql/server/sql_parser.y
+++ b/sql/server/sql_parser.y
@@ -1434,7 +1434,7 @@ with_opt_credentials:
   /* empty */
   {
          $$ = append_string(L(), NULL);
-         append_int($$, SQL_PW_UNENCRYPTED);
+         append_int($$, SQL_PW_ENCRYPTED);
          append_string($$, NULL);
   }
   | WITH USER string opt_encrypted PASSWORD string
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to