mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-17 21:38:04 -05:00
Fixed clang -Wembedded-directive warning:
embedding a directive within macro arguments has undefined behavior
This commit is contained in:
parent
d556fb78dc
commit
a44c8decbc
@ -5577,14 +5577,15 @@ static PKCS7 *cat_presign_file(file_type_t type, cmd_type_t cmd, FILE_HEADER *he
|
|||||||
|
|
||||||
static void print_version()
|
static void print_version()
|
||||||
{
|
{
|
||||||
|
#ifdef ENABLE_CURL
|
||||||
printf(PACKAGE_STRING ", using:\n\t%s (Library: %s)\n\t%s\n",
|
printf(PACKAGE_STRING ", using:\n\t%s (Library: %s)\n\t%s\n",
|
||||||
OPENSSL_VERSION_TEXT, OpenSSL_version(OPENSSL_VERSION),
|
OPENSSL_VERSION_TEXT, OpenSSL_version(OPENSSL_VERSION),
|
||||||
#ifdef ENABLE_CURL
|
curl_version());
|
||||||
curl_version()
|
|
||||||
#else
|
#else
|
||||||
"no libcurl available"
|
printf(PACKAGE_STRING ", using:\n\t%s (Library: %s)\n\t%s\n",
|
||||||
|
OPENSSL_VERSION_TEXT, OpenSSL_version(OPENSSL_VERSION),
|
||||||
|
"no libcurl available");
|
||||||
#endif /* ENABLE_CURL */
|
#endif /* ENABLE_CURL */
|
||||||
);
|
|
||||||
printf("\nPlease send bug-reports to " PACKAGE_BUGREPORT "\n\n");
|
printf("\nPlease send bug-reports to " PACKAGE_BUGREPORT "\n\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user