diff options
| author | Bruce Momjian | 1999-05-10 15:17:17 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-05-10 15:17:17 +0000 |
| commit | d6e33c8b07aeef995d7d4d200d6667383ec849ba (patch) | |
| tree | 9791480e6f9ea9e8eefb0ffd31522277176a8a27 /src/backend/libpq | |
| parent | d489fdfc7f4ccf0010fe0397e7272bdfc257e8f2 (diff) | |
Rename MAP_FILE to USERMAP_FILE for Digital Unix.
Diffstat (limited to 'src/backend/libpq')
| -rw-r--r-- | src/backend/libpq/hba.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/libpq/hba.c b/src/backend/libpq/hba.c index f5dddcdb262..85bbcb890e6 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"); |
