From: Andy Isaacson Date: Fri, 22 Jan 2016 20:06:21 +0000 (-0500) Subject: Fix quoting error in SRP printf X-Git-Tag: OpenSSL_1_1_0-pre3~452 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44fdf1c23dbc943b747f4ee5609ef98414621e4a;p=openssl Fix quoting error in SRP printf The code is trying to interpolate the value of the BASE_SECTION macro, but due to excess escaping, it instead prints the string "BASE_SECTION". Signed-off-by: Rich Salz Reviewed-by: Kurt Roeckx --- diff --git a/apps/srp.c b/apps/srp.c index 1c9a9bee43..c3e4f439fb 100644 --- a/apps/srp.c +++ b/apps/srp.c @@ -365,7 +365,7 @@ int srp_main(int argc, char **argv) if (verbose) BIO_printf(bio_err, "trying to read " ENV_DEFAULT_SRP - " in \" BASE_SECTION \"\n"); + " in " BASE_SECTION "\n"); section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_SRP); if (section == NULL) {