Commit ef0720f9 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

r9689@catbus: nickm | 2007-01-19 22:34:20 -0500

 And remove another strcpy.


svn:r9375
parent c57ef84f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1027,7 +1027,7 @@ crypto_pk_get_fingerprint(crypto_pk_env_t *pk, char *fp_out, int add_space)
                         NEVER_TERMINATE)<0)
      return -1;
  } else {
    strcpy(fp_out, hexdigest);
    strncpy(fp_out, hexdigest, HEX_DIGEST_LEN+1);
  }
  return 0;
}