Merge pull request #2035 from bmiklautz/fix/fingerprint

crypto: fix fingerprint
This commit is contained in:
Bernhard Miklautz 2014-08-12 15:54:44 +02:00
commit 387c7404b6
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ char* crypto_cert_fingerprint(X509* xcert)
sprintf(p, "%02x:", fp[i]);
p = &fp_buffer[(i + 1) * 3];
}
DEBUG_MSG(p, "%02x", fp[i]);
sprintf(p, "%02x", fp[i]);
return fp_buffer;
}