Skip to content
Snippets Groups Projects
Commit 1a92750c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Remove extra spaces from the cryptlib version details

The extra spaces caused the centering of the cryptlib version to be offset (not exactly centered).
parent d732d813
No related branches found
No related tags found
No related merge requests found
......@@ -111,12 +111,10 @@ void sbbs_t::ver()
#ifdef USE_CRYPTLIB
if(is_crypt_initialized()) {
int cl_major=0, cl_minor=0, cl_step=0;
int result;
result = cryptGetAttribute(CRYPT_UNUSED, CRYPT_OPTION_INFO_MAJORVERSION, &cl_major);
result = cryptGetAttribute(CRYPT_UNUSED, CRYPT_OPTION_INFO_MINORVERSION, &cl_minor);
result = cryptGetAttribute(CRYPT_UNUSED, CRYPT_OPTION_INFO_STEPPING, &cl_step);
(void)result;
sprintf(str, " cryptlib %u.%u.%u (%u)", cl_major, cl_minor, cl_step, CRYPTLIB_VERSION);
cryptGetAttribute(CRYPT_UNUSED, CRYPT_OPTION_INFO_MAJORVERSION, &cl_major);
cryptGetAttribute(CRYPT_UNUSED, CRYPT_OPTION_INFO_MINORVERSION, &cl_minor);
cryptGetAttribute(CRYPT_UNUSED, CRYPT_OPTION_INFO_STEPPING, &cl_step);
safe_snprintf(str, sizeof(str), "cryptlib %u.%u.%u (%u)", cl_major, cl_minor, cl_step, CRYPTLIB_VERSION);
center(str);
CRLF;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment