[tor-commits] [tor/master] Change type of unixoid_environment_block to match tor_spawn_background's arg

nickm at torproject.org nickm at torproject.org
Fri Feb 17 16:46:49 UTC 2012


commit 340d906419f8f263cd75eee1fb9d6c735b45a5d2
Author: Robert Ransom <rransom.8774 at gmail.com>
Date:   Mon Feb 13 00:43:48 2012 -0800

    Change type of unixoid_environment_block to match tor_spawn_background's arg
---
 src/common/util.h |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/common/util.h b/src/common/util.h
index 9d1baf0..41bd3d9 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;
 





More information about the tor-commits mailing list