Index: bin/psql/variables.c =================================================================== RCS file: /projects/cvsroot/pgsql/src/bin/psql/variables.c,v retrieving revision 1.19 diff -c -r1.19 variables.c *** bin/psql/variables.c 15 Oct 2004 05:02:31 -0000 1.19 --- bin/psql/variables.c 18 Oct 2004 14:12:54 -0000 *************** *** 51,57 **** val = GetVariable(space, name); if (val == NULL) return false; /* not set -> assume "off" */ ! if (strcasecmp(val, "off") == 0) return false; /* accept "off" or "OFF" as true */ /* --- 51,57 ---- val = GetVariable(space, name); if (val == NULL) return false; /* not set -> assume "off" */ ! if (pg_strcasecmp(val, "off") == 0) return false; /* accept "off" or "OFF" as true */ /* Index: include/miscadmin.h =================================================================== RCS file: /projects/cvsroot/pgsql/src/include/miscadmin.h,v retrieving revision 1.169 diff -c -r1.169 miscadmin.h *** include/miscadmin.h 9 Oct 2004 23:13:14 -0000 1.169 --- include/miscadmin.h 18 Oct 2004 14:12:54 -0000 *************** *** 120,126 **** --- 120,128 ---- /* * from utils/init/globals.c */ + #ifndef WIN32_CLIENT_ONLY extern pid_t PostmasterPid; + #endif extern bool IsPostmasterEnvironment; extern bool IsUnderPostmaster;