diff options
Diffstat (limited to 'src/port/unsetenv.c')
-rw-r--r-- | src/port/unsetenv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/unsetenv.c b/src/port/unsetenv.c index 248cead79d6..339e1725937 100644 --- a/src/port/unsetenv.c +++ b/src/port/unsetenv.c @@ -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. |