From 340d906419f8f263cd75eee1fb9d6c735b45a5d2 Mon Sep 17 00:00:00 2001 From: Robert Ransom Date: Mon, 13 Feb 2012 00:43:48 -0800 Subject: Change type of unixoid_environment_block to match tor_spawn_background's arg --- src/common/util.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/common/util.h') diff --git a/src/common/util.h b/src/common/util.h index 9d1baf0a2..41bd3d979 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; -- cgit v1.2.3