From: Todd C. Miller Date: Thu, 12 Jan 2012 20:02:08 +0000 (-0500) Subject: Add missing %s printf escape to the iolog_dir description. X-Git-Tag: SUDO_1_7_9~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d0a2e7716aa85582a743fc0f31b3b2a3deb21ee;p=sudo Add missing %s printf escape to the iolog_dir description. --HG-- branch : 1.7 --- diff --git a/def_data.c b/def_data.c index 798680edd..eaa156b0d 100644 --- a/def_data.c +++ b/def_data.c @@ -332,7 +332,7 @@ struct sudo_defs_types sudo_defs_table[] = { NULL, }, { "iolog_dir", T_STR|T_PATH, - "Directory in which to store input/output logs", + "Directory in which to store input/output logs: %s", NULL, }, { NULL, 0, NULL diff --git a/def_data.in b/def_data.in index f103b6469..e8eb097c4 100644 --- a/def_data.in +++ b/def_data.in @@ -246,4 +246,4 @@ use_pty "Always run commands in a pseudo-tty" iolog_dir T_STR|T_PATH - "Directory in which to store input/output logs" + "Directory in which to store input/output logs: %s"