aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-10-01 02:26:36 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-10-01 02:26:36 +0000
commit464f20cf7bef622fcdc77fa636388e9a3e207aca (patch)
tree96faeb6170ed73b0ceee7b1d82b7435dd3f2803c /src
parent9a23885f7243cddff2cba06a4d245ab54b1ff81e (diff)
downloadpostgresql-464f20cf7bef622fcdc77fa636388e9a3e207aca.tar.gz
postgresql-464f20cf7bef622fcdc77fa636388e9a3e207aca.zip
Fix a compile error on a platform that does not have PAM.
Diffstat (limited to 'src')
-rw-r--r--src/include/libpq/hba.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h
index 840bc3e05a4..aea1b215fe8 100644
--- a/src/include/libpq/hba.h
+++ b/src/include/libpq/hba.h
@@ -4,7 +4,7 @@
* Interface to hba.c
*
*
- * $Id: hba.h,v 1.27 2001/09/21 20:31:48 tgl Exp $
+ * $Id: hba.h,v 1.28 2001/10/01 02:26:36 ishii Exp $
*
*-------------------------------------------------------------------------
*/
@@ -38,9 +38,9 @@ typedef enum UserAuth
uaIdent,
uaPassword,
uaCrypt,
- uaMD5,
+ uaMD5
#ifdef USE_PAM
- uaPAM
+ ,uaPAM
#endif /* USE_PAM */
} UserAuth;