]> granicus.if.org Git - postgresql/blobdiff - src/port/unsetenv.c
Centralize single quote escaping in src/port/quotes.c
[postgresql] / src / port / unsetenv.c
index 248cead79d68d24a17a766df5a850d982ce61ec6..291a4891edce8f3ecfbc6f6b76c228de0b69b3d4 100644 (file)
@@ -3,7 +3,7 @@
  * unsetenv.c
  *       unsetenv() emulation for machines without it
  *
- * Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  *
@@ -31,8 +31,8 @@ unsetenv(const char *name)
         * that we zap the actual environ member.  However, there are some libc
         * implementations (notably recent BSDs) that do not obey SUS but copy the
         * presented string.  This method fails on such platforms.      Hopefully all
-        * such platforms have unsetenv() and thus won't be using this hack.
-        * See:  http://www.greenend.org.uk/rjk/2008/putenv.html
+        * such platforms have unsetenv() and thus won't be using this hack. See:
+        * http://www.greenend.org.uk/rjk/2008/putenv.html
         *
         * Note that repeatedly setting and unsetting a var using this code will
         * leak memory.