summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/util.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/common/util.h b/src/common/util.h
index 9d1baf0a25..41bd3d9795 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -386,8 +386,11 @@ struct process_environment_t {
* NUL-terminated strings of the form "NAME=VALUE". */
char *windows_environment_block;
/** A pointer to a NULL-terminated array of pointers to
- * NUL-terminated strings of the form "NAME=VALUE". */
- char **unixoid_environment_block;
+ * NUL-terminated strings of the form "NAME=VALUE".
+ *
+ * XXXX This should have type char **, but tor_spawn_background's
+ * prototype is incorrect. */
+ const char **unixoid_environment_block;
};
typedef struct process_environment_t process_environment_t;