mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
1. "#ifdef 0" is bad C. ifdef is for checking a macro and 0 is
an illegal macro name. Correct syntax is "#if 0". This is in... From: Darren King <darrenk@insightdist.com>
This commit is contained in:
@@ -21,7 +21,7 @@ extern int pwd_cache_count;
|
||||
|
||||
extern char* crypt_getpwdfilename(void);
|
||||
extern char* crypt_getpwdreloadfilename(void);
|
||||
#ifdef 0
|
||||
#if 0
|
||||
extern MsgType crypt_salt(const char* user);
|
||||
#endif
|
||||
extern int crypt_verify(Port* port, const char* user, const char* pgpass);
|
||||
|
||||
Reference in New Issue
Block a user