diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-08 03:04:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-08 03:04:41 +0000 |
commit | ba62fe32c391a33eac533b0cc4d4c163e4844c56 (patch) | |
tree | 5e282d8e1ddbcfb3798054e7de8694347445b2bd /src/backend/libpq/password.c | |
parent | a98eaa0191b5b7ef3bc69a66e04ae4cf304072a0 (diff) |
Remove long-dead support for invoking queries from dynamically loaded
backend functions via backend PQexec(). The SPI interface has long
been our only documented way to do this, and the backend pqexec/portal
code is unused and suffering bit-rot. I'm putting it out of its misery.
Diffstat (limited to 'src/backend/libpq/password.c')
-rw-r--r-- | src/backend/libpq/password.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/backend/libpq/password.c b/src/backend/libpq/password.c index 6f47d5d4378..d34ca4cdf42 100644 --- a/src/backend/libpq/password.c +++ b/src/backend/libpq/password.c @@ -2,21 +2,24 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: password.c,v 1.30 2000/07/04 16:31:53 petere Exp $ + * $Id: password.c,v 1.31 2000/07/08 03:04:40 tgl Exp $ * */ #include <unistd.h> #include "postgres.h" + #ifdef HAVE_CRYPT_H -#include "crypt.h" +#include <crypt.h> #endif #include "libpq/libpq.h" #include "libpq/password.h" #include "libpq/crypt.h" #include "miscadmin.h" +#include "storage/fd.h" + int verify_password(const Port *port, const char *user, const char *password) |