From: Tom Lane Date: Wed, 14 Aug 2002 23:02:59 +0000 (+0000) Subject: Really truly enable encrypted passwords by default. X-Git-Tag: REL7_3~923 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc8705531d94b718dfde511a6612e19df3510064;p=thirdparty%2Fpostgresql.git Really truly enable encrypted passwords by default. --- diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 4b272376e2b..4e2764fc430 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -5,7 +5,7 @@ * command, configuration file, and command line options. * See src/backend/utils/misc/README for more information. * - * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.80 2002/08/14 22:07:56 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.81 2002/08/14 23:02:59 tgl Exp $ * * Copyright 2000 by PostgreSQL Global Development Group * Written by Peter Eisentraut . @@ -476,7 +476,7 @@ static struct config_bool }, { { "password_encryption", PGC_USERSET }, &Password_encryption, - false, NULL, NULL + true, NULL, NULL }, { { "transform_null_equals", PGC_USERSET }, &Transform_null_equals,