diff --git a/src/backend/libpq/hba.c b/src/backend/libpq/hba.c index f5dddcdb262b7d2b96e3a1b42c2c9a69df46775a..85bbcb890e6d755d70804ecdef60a86017672cb1 100644 --- a/src/backend/libpq/hba.c +++ b/src/backend/libpq/hba.c @@ -5,7 +5,7 @@ * wherein you authenticate a user by seeing what IP address the system * says he comes from and possibly using ident). * - * $Id: hba.c,v 1.41 1999/05/09 00:54:30 tgl Exp $ + * $Id: hba.c,v 1.42 1999/05/10 15:17:16 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -785,9 +785,9 @@ verify_against_usermap(const char *pguser, int bufsize; /* put together the full pathname to the map file */ - bufsize = (strlen(DataDir) + strlen(MAP_FILE) + 2) * sizeof(char); + bufsize = (strlen(DataDir) + strlen(USERMAP_FILE) + 2) * sizeof(char); map_file = (char *) palloc(bufsize); - snprintf(map_file, bufsize, "%s/%s", DataDir, MAP_FILE); + snprintf(map_file, bufsize, "%s/%s", DataDir, USERMAP_FILE); #ifndef __CYGWIN32__ file = AllocateFile(map_file, "r"); diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index 50d23c2d4a0eb68d67dc4ced46f09080a8b5d157..ea603556c21b5b86d979f285270ec9b0f08fd04f 100644 --- a/src/include/libpq/hba.h +++ b/src/include/libpq/hba.h @@ -4,7 +4,7 @@ * Interface to hba.c * * - * $Id: hba.h,v 1.12 1999/02/13 23:21:35 momjian Exp $ + * $Id: hba.h,v 1.13 1999/05/10 15:17:17 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,7 @@ #define CONF_FILE "pg_hba.conf" /* Name of the config file */ -#define MAP_FILE "pg_ident.conf" +#define USERMAP_FILE "pg_ident.conf" /* Name of the usermap file */ #define OLD_CONF_FILE "pg_hba"