]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
s/SANDBOX_TAME/SANDBOX_PLEDGE/g
authorDamien Miller <djm@mindrot.org>
Wed, 14 Oct 2015 16:22:15 +0000 (09:22 -0700)
committerDamien Miller <djm@mindrot.org>
Wed, 14 Oct 2015 16:22:15 +0000 (09:22 -0700)
configure.ac
sandbox-pledge.c

index 346a90c7368c70bebaa929edee65b51a26b2f5cc..a6f947eb8db09a8ac170a4e3cff1b801b6c8b330 100644 (file)
@@ -3099,7 +3099,7 @@ if test "x$sandbox_arg" = "xpledge" || \
        test "x$ac_cv_func_pledge" != "xyes" && \
                AC_MSG_ERROR([pledge sandbox requires pledge(2) support])
        SANDBOX_STYLE="pledge"
-       AC_DEFINE([SANDBOX_TAME], [1], [Sandbox using pledge(2)])
+       AC_DEFINE([SANDBOX_PLEDGE], [1], [Sandbox using pledge(2)])
 elif test "x$sandbox_arg" = "xsystrace" || \
    ( test -z "$sandbox_arg" && test "x$have_systr_policy_kill" = "x1" ) ; then
        test "x$have_systr_policy_kill" != "x1" && \
index 1d3e247d700e865ef19f22914b080f33cfde89cc..d28fc27274e27b05b1dd14ccc76f0b8ea62d46fa 100644 (file)
@@ -17,7 +17,7 @@
 
 #include "includes.h"
 
-#ifdef SANDBOX_TAME
+#ifdef SANDBOX_PLEDGE
 
 #include <sys/types.h>
 #include <sys/ioctl.h>
@@ -74,4 +74,4 @@ ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
        /* Nothing to do here */
 }
 
-#endif /* SANDBOX_TAME */
+#endif /* SANDBOX_PLEDGE */