summaryrefslogtreecommitdiff
path: root/src/backend/libpq/crypt.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1998-02-01 00:02:59 +0000
committerMarc G. Fournier <scrappy@hub.org>1998-02-01 00:02:59 +0000
commit1af818b8bfc9127167ac7058c2c625b07f12271a (patch)
tree88f0d877f933f57d847a77ddd43d8e1376b9e0d8 /src/backend/libpq/crypt.c
parent7a335784363b7447d1da26b11878f8e105f9fbca (diff)
downloadpostgresql-1af818b8bfc9127167ac7058c2c625b07f12271a.tar.gz
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/backend/libpq/crypt.c')
-rw-r--r--src/backend/libpq/crypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/libpq/crypt.c b/src/backend/libpq/crypt.c
index b87b05cd42..dbda5e3e2b 100644
--- a/src/backend/libpq/crypt.c
+++ b/src/backend/libpq/crypt.c
@@ -220,7 +220,7 @@ int crypt_getloginfo(const char* user, char** passwd, char** valuntil) {
/*-------------------------------------------------------------------------*/
-#ifdef 0
+#if 0
MsgType crypt_salt(const char* user) {
char* passwd;