From dd20253fec90fa02229e6739842208b60ed0b25d Mon Sep 17 00:00:00 2001 From: Alberto Aguirre Date: Fri, 2 Mar 2018 12:56:47 -0600 Subject: [PATCH] tests: fix OSX build errors when enabling tests Fix OSX build error about embedding a directive within macro arguments. Apparently, snprintf is implemented as a macro on that platform. Signed-off-by: Alberto Aguirre Reviewed-by: Andreas Schneider --- tests/torture.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tests/torture.c b/tests/torture.c index e442b8db..48a70d65 100644 --- a/tests/torture.c +++ b/tests/torture.c @@ -681,16 +681,24 @@ static void torture_setup_create_sshd_config(void **state) } assert_non_null(sftp_server); +#ifdef HAVE_DSA snprintf(sshd_config, sizeof(sshd_config), config_string, -#ifdef HAVE_DSA dsa_hostkey, -#endif rsa_hostkey, ecdsa_hostkey, trusted_ca_pubkey, sftp_server, s->srv_pidfile); +#else + snprintf(sshd_config, sizeof(sshd_config), + config_string, + rsa_hostkey, + ecdsa_hostkey, + trusted_ca_pubkey, + sftp_server, + s->srv_pidfile); +#endif torture_write_file(s->srv_config, sshd_config); }