summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-03-02 14:39:45 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-03-02 14:39:45 +0000
commitcea55f7259b2239d8285d1643998123823df1d7a (patch)
treefff65024372eca8e2bfa02f605ee5474e46287c9 /usr.bin
parent7581697630d7acea246ce283e315fd8433988d3d (diff)
Update to sudo 1.6.3p7
Fixes negation of path-type Defaults entries in a boolean context.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/sudo/CHANGES48
-rw-r--r--usr.bin/sudo/defaults.c2
-rw-r--r--usr.bin/sudo/version.h2
3 files changed, 49 insertions, 3 deletions
diff --git a/usr.bin/sudo/CHANGES b/usr.bin/sudo/CHANGES
index f6ea3e11c0e..5eecd28822c 100644
--- a/usr.bin/sudo/CHANGES
+++ b/usr.bin/sudo/CHANGES
@@ -1312,7 +1312,7 @@ Sudo 1.6.3p2 released.
Sudo 1.6.3p3 released.
-412) Fixed a case where a string was used after it has been freed.
+412) Fixed a case where a string was used after it had been freed.
Sudo 1.6.3p4 released.
@@ -1321,3 +1321,49 @@ Sudo 1.6.3p4 released.
414) Do not write NUL when writing passwd prompt; hag@linnaean.org.
Sudo 1.6.3p5 released.
+
+415) Visudo now checks for the existence of an editor and gives a sensible
+ error if it does not exist.
+
+416) The path to the editor for visudo is now a colon-separated list of
+ allowable editors. If the user has $EDITOR set and it matches
+ one of the allowed editors that editor will be used. If not,
+ the first editor that actually exists is used.
+
+417) Visudo now does its own fork/exec instead of calling system(3).
+
+418) Call clean_env very early in main() for paranoia's sake. Idea from
+ Marc Esipovich.
+
+419) Allow special characters (including '#') to be embedded in pathnames
+ if quoted by a '\\'. The quoted chars will be dealt with by fnmatch().
+ Unfortunately, 'sudo -l' still prints the '\\'.
+
+420) Added always_set_home option.
+
+421) Strip NLSPATH and PATH_LOCALE out from the environment to prevent
+ reading of protected files by a less priviledged user.
+
+422) Add support for BSD authentication and associated -a flag.
+
+423) Added check for _innetgr(3) since NCR systems have this instead
+ of innetgr(3).
+
+424) Added stay_setuid option for systems that have libraries that perform
+ extra paranoia checks in system libraries for setuid programs.
+
+425) Environment munging is now done by hand. We build up a new environment
+ and assign it to "environ". This means we don't rely on getenv(3),
+ putenv(3), or setenv(3).
+
+426) Added env_reset and env_keep options. This allows the sysadmin to
+ force commands to run with a clean environment. Any variable in
+ the env_keep list will not get cleared when the environment is reset
+ *or* purged of dangerous vars (e.g. LD_*).
+
+427) Added a class of environment variables that are only cleared if they
+ contain '/' or '%' characters.
+
+428) Fix word splitting bug that caused a segv for very long command line args.
+
+429) Fix negation of path-type Defaults entries in a boolean context.
diff --git a/usr.bin/sudo/defaults.c b/usr.bin/sudo/defaults.c
index 482b574c0c1..e7d1c345fe6 100644
--- a/usr.bin/sudo/defaults.c
+++ b/usr.bin/sudo/defaults.c
@@ -408,7 +408,7 @@ set_default(var, val, op)
return(FALSE);
}
}
- if ((cur->type & T_PATH) && *val != '/') {
+ if ((cur->type & T_PATH) && val && *val != '/') {
(void) fprintf(stderr,
"%s: values for `%s' must start with a '/'\n", Argv[0],
var);
diff --git a/usr.bin/sudo/version.h b/usr.bin/sudo/version.h
index 3e1f9534b16..cd4bda7bf2a 100644
--- a/usr.bin/sudo/version.h
+++ b/usr.bin/sudo/version.h
@@ -37,6 +37,6 @@
#ifndef _SUDO_VERSION_H
#define _SUDO_VERSION_H
-static const char version[] = "1.6.3p6";
+static const char version[] = "1.6.3p7";
#endif /* _SUDO_VERSION_H */