diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/startup.c | 4 | ||||
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index b8f6ca5f562..6945cc29d6e 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.109 2005/01/06 18:29:09 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.110 2005/01/14 00:25:17 momjian Exp $ */ #include "postgres_fe.h" @@ -48,7 +48,7 @@ PsqlSettings pset; #define PSQLRC ".psqlrc" #else #define SYSPSQLRC "psqlrc" -#define PSQLRC "psqlrc.txt" +#define PSQLRC "psqlrc.conf" #endif /* diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 020d4c7ec99..52f0fe32ac6 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.300 2005/01/10 00:19:43 tgl Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.301 2005/01/14 00:25:56 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -69,7 +69,7 @@ #ifndef WIN32 #define PGPASSFILE ".pgpass" #else -#define PGPASSFILE "pgpass.txt" +#define PGPASSFILE "pgpass.conf" #endif /* fall back options if they are not specified by arguments or defined |