diff options
author | Darren Tucker <dtucker@zip.com.au> | 2003-07-14 09:28:34 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2003-07-14 09:28:34 +0200 |
commit | 29588616c214e411e1823b2949e5fa9d6a49d75f (patch) | |
tree | 345c9c73283dc0d0b92e75383b1cecea37a602ba /key.c | |
parent | - (dtucker) [port-aix.h] Fix prototypes. (diff) | |
download | openssh-29588616c214e411e1823b2949e5fa9d6a49d75f.tar.xz openssh-29588616c214e411e1823b2949e5fa9d6a49d75f.zip |
- avsm@cvs.openbsd.org 2003/07/09 13:58:19
[key.c]
minor tweak: when generating the hex fingerprint, give strlcat the full
bound to the buffer, and add a comment below explaining why the
zero-termination is one less than the bound. markus@ ok
Diffstat (limited to 'key.c')
-rw-r--r-- | key.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -32,7 +32,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: key.c,v 1.53 2003/06/24 08:23:46 markus Exp $"); +RCSID("$OpenBSD: key.c,v 1.54 2003/07/09 13:58:19 avsm Exp $"); #include <openssl/evp.h> @@ -236,8 +236,10 @@ key_fingerprint_hex(u_char *dgst_raw, u_int dgst_raw_len) for (i = 0; i < dgst_raw_len; i++) { char hex[4]; snprintf(hex, sizeof(hex), "%02x:", dgst_raw[i]); - strlcat(retval, hex, dgst_raw_len * 3); + strlcat(retval, hex, dgst_raw_len * 3 + 1); } + + /* Remove the trailing ':' character */ retval[(dgst_raw_len * 3) - 1] = '\0'; return retval; } |