From: Todd C. Miller Date: Tue, 20 Dec 2011 13:38:47 +0000 (-0500) Subject: Add missing %s printf escape to the group_plugin, iolog_dir and X-Git-Tag: SUDO_1_8_4~103^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91839036db8f78a2ffcb83d25e5878741bf016ff;p=sudo Add missing %s printf escape to the group_plugin, iolog_dir and iolog_file descriptions. --- 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"