1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-18 17:42:25 +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:
Marc G. Fournier
1998-02-01 00:02:59 +00:00
parent 7a33578436
commit 1af818b8bf
3 changed files with 9 additions and 9 deletions

View File

@ -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;