summaryrefslogtreecommitdiffstats
path: root/lib/utils_base.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@aei.ca>2014-01-27 13:35:23 (GMT)
committerThomas Guyot-Sionnest <dermoth@aei.ca>2014-01-27 13:35:23 (GMT)
commit189e2aa344b28a2cb5b5783450de201a9b2e3110 (patch)
treed67c6b5a7e591dfd90d57d3ca7f660ac4d0fcfbe /lib/utils_base.c
parent4a10a9493acaf1f12da12ef4881e2abacec1373a (diff)
downloadmonitoring-plugins-189e2aa344b28a2cb5b5783450de201a9b2e3110.tar.gz
Rename MP_STATE_DIRECTORY to MP_STATE_PATH
Diffstat (limited to 'lib/utils_base.c')
-rw-r--r--lib/utils_base.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/utils_base.c b/lib/utils_base.c
index fdd7d23..f5f7506 100644
--- a/lib/utils_base.c
+++ b/lib/utils_base.c
@@ -417,10 +417,10 @@ void _cleanup_state_data() {
417char* _np_state_calculate_location_prefix(){ 417char* _np_state_calculate_location_prefix(){
418 char *env_dir; 418 char *env_dir;
419 419
420 /* Do not allow passing MP_STATE_DIRECTORY in setuid plugins 420 /* Do not allow passing MP_STATE_PATH in setuid plugins
421 * for security reasons */ 421 * for security reasons */
422 if (mp_suid() == FALSE) { 422 if (mp_suid() == FALSE) {
423 env_dir = getenv("MP_STATE_DIRECTORY"); 423 env_dir = getenv("MP_STATE_PATH");
424 if(env_dir && env_dir[0] != '\0') 424 if(env_dir && env_dir[0] != '\0')
425 return env_dir; 425 return env_dir;
426 /* This is the former ENV, for backward-compatibility */ 426 /* This is the former ENV, for backward-compatibility */