From 658f229ac63477f372c01bc3590e2d98f6729c8e Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Fri, 23 May 1997 00:20:20 +0000
Subject: [PATCH] Comment on fix added.

---
 src/bin/psql/psql.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index 1597c5561b4..486e07f331e 100644
--- a/src/bin/psql/psql.c
+++ b/src/bin/psql/psql.c
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.62 1997/05/22 23:57:27 momjian Exp $
+ *    $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.63 1997/05/23 00:20:20 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -848,7 +848,7 @@ do_connect(const char *new_dbname,
 	    	free(userenv);
 	    userenv = malloc(strlen("PGUSER=") + strlen(new_user) + 1);
 	    sprintf(userenv,"PGUSER=%s",new_user);
-	    putenv(userenv); /* putenv() continues to use memory in env. */
+	    putenv(userenv); /*Solaris putenv() continues to use memory in env*/
 	}
 	settings->db = PQsetdb(PQhost(olddb), PQport(olddb),
 			       NULL, NULL, new_dbname);
-- 
GitLab