diff options
Diffstat (limited to 'contrib/pgcrypto/px-crypt.c')
-rw-r--r-- | contrib/pgcrypto/px-crypt.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/contrib/pgcrypto/px-crypt.c b/contrib/pgcrypto/px-crypt.c index 0b818ffeee..e21acb73c6 100644 --- a/contrib/pgcrypto/px-crypt.c +++ b/contrib/pgcrypto/px-crypt.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/px-crypt.c,v 1.14 2005/09/24 19:14:04 tgl Exp $ + * $PostgreSQL: pgsql/contrib/pgcrypto/px-crypt.c,v 1.15 2005/10/15 02:49:06 momjian Exp $ */ #include "postgres.h" @@ -77,9 +77,9 @@ struct px_crypt_algo }; static const struct px_crypt_algo -px_crypt_list[] = { + px_crypt_list[] = { {"$2a$", 4, run_crypt_bf}, - {"$2$", 3, NULL}, /* N/A */ + {"$2$", 3, NULL}, /* N/A */ {"$1$", 3, run_crypt_md5}, {"_", 1, run_crypt_des}, {"", 0, run_crypt_des}, @@ -164,4 +164,3 @@ px_gen_salt(const char *salt_type, char *buf, int rounds) return strlen(p); } - |