diff options
Diffstat (limited to 'src/include/libpq/hba.h')
-rw-r--r-- | src/include/libpq/hba.h | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index aea1b215fe..f29e2a7254 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.28 2001/10/01 02:26:36 ishii Exp $ + * $Id: hba.h,v 1.29 2001/10/25 05:49:59 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -31,23 +31,22 @@ typedef enum UserAuth { - uaReject, - uaKrb4, - uaKrb5, - uaTrust, - uaIdent, - uaPassword, - uaCrypt, - uaMD5 + uaReject, + uaKrb4, + uaKrb5, + uaTrust, + uaIdent, + uaPassword, + uaCrypt, + uaMD5 #ifdef USE_PAM - ,uaPAM -#endif /* USE_PAM */ + ,uaPAM +#endif /* USE_PAM */ } UserAuth; typedef struct Port hbaPort; -extern int hba_getauthmethod(hbaPort *port); -extern int authident(hbaPort *port); +extern int hba_getauthmethod(hbaPort *port); +extern int authident(hbaPort *port); extern void load_hba_and_ident(void); - #endif |