File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.177 2005/01/08 22:13:28 tgl Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.178 2005/01/14 00:23:21 momjian Exp $
3
3
-->
4
4
5
5
<chapter id="libpq">
@@ -3883,7 +3883,7 @@ The file <filename>.pgpass</filename> in a user's home directory is a file
3883
3883
that can contain passwords to be used if the connection requires a
3884
3884
password (and no password has been specified otherwise).
3885
3885
On Microsoft Windows the file is named
3886
- <filename>%APPDATA%\postgresql\pgpass.txt </> (where <filename>%APPDATA%</>
3886
+ <filename>%APPDATA%\postgresql\pgpass.conf </> (where <filename>%APPDATA%</>
3887
3887
refers to the Application Data subdirectory in the user's profile).
3888
3888
</para>
3889
3889
Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.129 2005/01/06 21:20:44 tgl Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.130 2005/01/14 00:24:23 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -2525,7 +2525,7 @@ $endif
2525
2525
<filename>psqlrc</filename> file and the user's
2526
2526
<filename>~/.psqlrc</filename> file.
2527
2527
(On Windows, the user's startup file is named
2528
- <filename>%APPDATA%\postgresql\psqlrc.txt </filename>.)
2528
+ <filename>%APPDATA%\postgresql\psqlrc.conf </filename>.)
2529
2529
See <filename><replaceable>PREFIX</>/share/psqlrc.sample</>
2530
2530
for information on setting up the system-wide file. It could be used
2531
2531
to set up the client or the server to taste (using the <command>\set
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
5
5
*
6
- * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.109 2005/01/06 18:29:09 tgl Exp $
6
+ * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.110 2005/01/14 00:25:17 momjian Exp $
7
7
*/
8
8
#include "postgres_fe.h"
9
9
@@ -48,7 +48,7 @@ PsqlSettings pset;
48
48
#define PSQLRC ".psqlrc"
49
49
#else
50
50
#define SYSPSQLRC "psqlrc"
51
- #define PSQLRC "psqlrc.txt "
51
+ #define PSQLRC "psqlrc.conf "
52
52
#endif
53
53
54
54
/*
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.300 2005/01/10 00:19:43 tgl Exp $
11
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.301 2005/01/14 00:25:56 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
69
69
#ifndef WIN32
70
70
#define PGPASSFILE ".pgpass"
71
71
#else
72
- #define PGPASSFILE "pgpass.txt "
72
+ #define PGPASSFILE "pgpass.conf "
73
73
#endif
74
74
75
75
/* fall back options if they are not specified by arguments or defined
You can’t perform that action at this time.
0 commit comments