Fix a typo.

This commit is contained in:
Sadrul Habib Chowdhury
2010-03-12 19:27:09 -05:00
parent 08939ef842
commit 6e67aee852

View File

@@ -609,7 +609,7 @@ char *value;
* the string space, we can free our buf now.
*/
free(buf);
# else /* NEEDSETENV */
# else /* NEEDPUTENV */
/*
* For all sysv-ish systems that link a standard putenv()
* the string-space buf is added to the environment and must not
@@ -617,7 +617,7 @@ char *value;
* We are sorry to say that memory is lost here, when setting
* the same variable again and again.
*/
# endif /* NEEDSETENV */
# endif /* NEEDPUTENV */
#else /* USESETENV */
# if HAVE_SETENV_3
setenv(var, value, 1);