From f9af2bc99e4b895b6b5650114dd7186b70eef8a5 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 20 Feb 2015 06:30:41 -0700 Subject: [PATCH] Correct SECURE_PATH comment. --- config.h.in | 4 ++-- configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config.h.in b/config.h.in index 4177fef13..52edebe54 100644 --- a/config.h.in +++ b/config.h.in @@ -1035,7 +1035,7 @@ ones. */ #undef PC_INSULTS -/* Enable replacement getcwd if system getcwd is broken. */ +/* Define to 1 to enable replacement getcwd if system getcwd is broken. */ #undef PREFER_PORTABLE_GETCWD /* Enable replacement (v)snprintf if system (v)snprintf is broken. */ @@ -1066,7 +1066,7 @@ /* The user sudo should run commands as by default. */ #undef RUNAS_DEFAULT -/* Define to 1 to override the user's path with a built-in one. */ +/* A colon-separated list of directories to override the user's PATH with. */ #undef SECURE_PATH /* Define to 1 to send mail when the user is not allowed to run a command. */ diff --git a/configure.ac b/configure.ac index cb2cf6aef..7dc24f3c3 100644 --- a/configure.ac +++ b/configure.ac @@ -4247,8 +4247,8 @@ AH_TEMPLATE(NO_ROOT_MAILER, [Define to avoid runing the mailer as root.]) AH_TEMPLATE(NO_ROOT_SUDO, [Define to 1 if root should not be allowed to use sudo.]) AH_TEMPLATE(NO_TTY_TICKETS, [Define to 1 if you want a single ticket file instead of per-tty files.]) AH_TEMPLATE(PC_INSULTS, [Define to 1 to replace politically incorrect insults with less offensive ones.]) -AH_TEMPLATE(PREFER_PORTABLE_GETCWD, [Enable replacement getcwd if system getcwd is broken.]) -AH_TEMPLATE(SECURE_PATH, [Define to 1 to override the user's path with a built-in one.]) +AH_TEMPLATE(PREFER_PORTABLE_GETCWD, [Define to 1 to enable replacement getcwd if system getcwd is broken.]) +AH_TEMPLATE(SECURE_PATH, [A colon-separated list of directories to override the user's PATH with.]) AH_TEMPLATE(SEND_MAIL_WHEN_NOT_OK, [Define to 1 to send mail when the user is not allowed to run a command.]) AH_TEMPLATE(SEND_MAIL_WHEN_NO_HOST, [Define to 1 to send mail when the user is not allowed to run sudo on this host.]) AH_TEMPLATE(SEND_MAIL_WHEN_NO_USER, [Define to 1 to send mail when the user is not in the sudoers file.])