Change Win32 client configuration files from *.txt to *.conf.
authorBruce Momjian
Fri, 14 Jan 2005 00:25:56 +0000 (00:25 +0000)
committerBruce Momjian
Fri, 14 Jan 2005 00:25:56 +0000 (00:25 +0000)
doc/src/sgml/libpq.sgml
doc/src/sgml/ref/psql-ref.sgml
src/bin/psql/startup.c
src/interfaces/libpq/fe-connect.c

index 4dbeda993ee8d34117dd6484b2381df2cf2740d1..373c257f539dcdc10d32df42101adf1428604878 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -3883,7 +3883,7 @@ The file .pgpass in a user's home directory is a file
 that can contain passwords to be used if the connection requires a
 password (and no password has been specified otherwise).
 On Microsoft Windows the file is named
-%APPDATA%\postgresql\pgpass.txt (where %APPDATA%
+%APPDATA%\postgresql\pgpass.conf (where %APPDATA%
 refers to the Application Data subdirectory in the user's profile).
 
 
index 7f7a4173fe5a2237844b8671cfd66f3d0f80dc19..b5bf703a711c95006fe5f9ddc7fc523049136fd1 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -2525,7 +2525,7 @@ $endif
      psqlrc file and the user's
      ~/.psqlrc file.
      (On Windows, the user's startup file is named
-     %APPDATA%\postgresql\psqlrc.txt.)
+     %APPDATA%\postgresql\psqlrc.conf.)
      See PREFIX/share/psqlrc.sample
      for information on setting up the system-wide file.  It could be used
      to set up the client or the server to taste (using the \set
index b8f6ca5f56226ee8fd75a0e333f01248395320a0..6945cc29d6e875fb67f2f0c98eea64f6800a6313 100644 (file)
@@ -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
 
 /*
index 020d4c7ec999aee297c51231993035ad1526a5e4..52f0fe32ac658119fa5c2fe611fa268a08521df9 100644 (file)
@@ -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