summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadrul Habib Chowdhury <sadrul@users.sourceforge.net>2010-03-12 19:27:09 -0500
committerSadrul Habib Chowdhury <sadrul@users.sourceforge.net>2010-03-12 19:27:09 -0500
commit6e67aee852c60c8b8a67981233ed29ca48ff8506 (patch)
tree0b25481ab7898a8f7723e0d8b6a10e197dc063da
parent08939ef8428d4cde3c76adef1ec8ef253c3f669c (diff)
downloadscreen-6e67aee852c60c8b8a67981233ed29ca48ff8506.tar.gz
Fix a typo.
-rw-r--r--src/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc.c b/src/misc.c
index ff3bebb..43e93a2 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -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);