Skip to content

Commit 464f20c

Browse files
committed
Fix a compile error on a platform that does not have PAM.
1 parent 9a23885 commit 464f20c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/include/libpq/hba.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Interface to hba.c
55
*
66
*
7-
* $Id: hba.h,v 1.27 2001/09/21 20:31:48 tgl Exp $
7+
* $Id: hba.h,v 1.28 2001/10/01 02:26:36 ishii Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -38,9 +38,9 @@ typedef enum UserAuth
3838
uaIdent,
3939
uaPassword,
4040
uaCrypt,
41-
uaMD5,
41+
uaMD5
4242
#ifdef USE_PAM
43-
uaPAM
43+
,uaPAM
4444
#endif /* USE_PAM */
4545
} UserAuth;
4646

0 commit comments

Comments
 (0)