From 91839036db8f78a2ffcb83d25e5878741bf016ff Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 20 Dec 2011 08:38:47 -0500 Subject: [PATCH] Add missing %s printf escape to the group_plugin, iolog_dir and iolog_file descriptions. --- plugins/sudoers/def_data.c | 6 +++--- plugins/sudoers/def_data.in | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/sudoers/def_data.c b/plugins/sudoers/def_data.c index a33cfb460..46097c923 100644 --- a/plugins/sudoers/def_data.c +++ b/plugins/sudoers/def_data.c @@ -328,15 +328,15 @@ struct sudo_defs_types sudo_defs_table[] = { NULL, }, { "group_plugin", T_STR, - N_("Plugin for non-Unix group support"), + N_("Plugin for non-Unix group support: %s"), NULL, }, { "iolog_dir", T_STR|T_PATH, - N_("Directory in which to store input/output logs"), + N_("Directory in which to store input/output logs: %s"), NULL, }, { "iolog_file", T_STR, - N_("File in which to store the input/output log"), + N_("File in which to store the input/output log: %s"), NULL, }, { "set_utmp", T_FLAG, diff --git a/plugins/sudoers/def_data.in b/plugins/sudoers/def_data.in index 33ab1353a..46b4692b6 100644 --- a/plugins/sudoers/def_data.in +++ b/plugins/sudoers/def_data.in @@ -243,13 +243,13 @@ use_pty "Always run commands in a pseudo-tty" group_plugin T_STR - "Plugin for non-Unix group support" + "Plugin for non-Unix group support: %s" iolog_dir T_STR|T_PATH - "Directory in which to store input/output logs" + "Directory in which to store input/output logs: %s" iolog_file T_STR - "File in which to store the input/output log" + "File in which to store the input/output log: %s" set_utmp T_FLAG "Add an entry to the utmp/utmpx file when allocating a pty" -- 2.40.0