diff options
| author | Marc G. Fournier | 1998-02-01 00:02:59 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1998-02-01 00:02:59 +0000 |
| commit | 1af818b8bfc9127167ac7058c2c625b07f12271a (patch) | |
| tree | 88f0d877f933f57d847a77ddd43d8e1376b9e0d8 /src/include/libpq | |
| parent | 7a335784363b7447d1da26b11878f8e105f9fbca (diff) | |
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>
Diffstat (limited to 'src/include/libpq')
| -rw-r--r-- | src/include/libpq/crypt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/libpq/crypt.h b/src/include/libpq/crypt.h index 77d4fb7d03b..b1da83ac603 100644 --- a/src/include/libpq/crypt.h +++ b/src/include/libpq/crypt.h @@ -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); |
