From: Damien Miller Date: Wed, 14 Oct 2015 16:22:15 +0000 (-0700) Subject: s/SANDBOX_TAME/SANDBOX_PLEDGE/g X-Git-Tag: V_7_2_P1~153 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fafe1d84a210fb3dae7744f268059cc583db8c12;p=thirdparty%2Fopenssh-portable.git s/SANDBOX_TAME/SANDBOX_PLEDGE/g --- diff --git a/configure.ac b/configure.ac index 346a90c73..a6f947eb8 100644 --- a/configure.ac +++ b/configure.ac @@ -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" && \ diff --git a/sandbox-pledge.c b/sandbox-pledge.c index 1d3e247d7..d28fc2727 100644 --- a/sandbox-pledge.c +++ b/sandbox-pledge.c @@ -17,7 +17,7 @@ #include "includes.h" -#ifdef SANDBOX_TAME +#ifdef SANDBOX_PLEDGE #include #include @@ -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 */