From 5b248a07651bbca0b78e154d7939c59df34fa33e Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sun, 2 Mar 2008 13:38:46 +0000 Subject: [PATCH] add missing printf format to SELinux role and type strings --- def_data.c | 4 ++-- def_data.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/def_data.c b/def_data.c index 96a2b20a4..7d0dcadef 100644 --- a/def_data.c +++ b/def_data.c @@ -276,11 +276,11 @@ struct sudo_defs_types sudo_defs_table[] = { NULL, }, { "role", T_STR, - "SELinux role to use in the new security context", + "SELinux role to use in the new security context: %s", NULL, }, { "type", T_STR, - "SELinux type to use in the new security context", + "SELinux type to use in the new security context: %s", NULL, }, { NULL, 0, NULL diff --git a/def_data.in b/def_data.in index 4a3c46a4c..16e457a92 100644 --- a/def_data.in +++ b/def_data.in @@ -204,7 +204,7 @@ env_keep "Environment variables to preserve:" role T_STR - "SELinux role to use in the new security context" + "SELinux role to use in the new security context: %s" type T_STR - "SELinux type to use in the new security context" + "SELinux type to use in the new security context: %s"