summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2019-02-23 04:47:02 +0100
committerGuillem Jover <guillem@debian.org>2019-02-23 15:24:29 +0100
commitbe0504ce8b38a653c43a33ce6b4b70722e2e46a5 (patch)
tree6814dd4939876f32f39395bfcf672b03eb651573 /src
parent754511aaef556ebad03560e689eeb2044a7ee1fd (diff)
downloaddpkg-be0504ce8b38a653c43a33ce6b4b70722e2e46a5.tar.gz
dpkg: Move SELinux fallback label to the SELinux specific code path
The wrapper function should be generic, so leaking this SELinux specific detail there is just wrong.
Diffstat (limited to 'src')
-rw-r--r--src/script.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script.c b/src/script.c
index 0865b953f..f02ca509e 100644
--- a/src/script.c
+++ b/src/script.c
@@ -158,12 +158,12 @@ maintscript_pre_exec(struct command *cmd)
* one, use the given fallback.
*/
static int
-maintscript_set_exec_context(struct command *cmd, const char *fallback)
+maintscript_set_exec_context(struct command *cmd)
{
int rc = 0;
#ifdef WITH_LIBSELINUX
- rc = setexecfilecon(cmd->filename, fallback);
+ rc = setexecfilecon(cmd->filename, "dpkg_script_t");
#endif
return rc < 0 ? rc : 0;
@@ -199,7 +199,7 @@ maintscript_exec(struct pkginfo *pkg, struct pkgbin *pkgbin,
cmd->filename = cmd->argv[0] = maintscript_pre_exec(cmd);
- if (maintscript_set_exec_context(cmd, "dpkg_script_t") < 0)
+ if (maintscript_set_exec_context(cmd) < 0)
ohshite(_("cannot set security execution context for "
"maintainer script"));