diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 23:05:26 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 23:05:26 +0000 |
commit | 39a5b78f8797ded2c50107a77794cd671dff707f (patch) | |
tree | 39f650e2e85c255908675444e0ce32d9639f251f /net/v6eval/files/patch-bin_dhgen_dhgen.cc | |
parent | Remove non staged ports without pending PR from net-im and net-mgmt (diff) |
Remove non staged ports without pending PR from net-p2p, net and news
Notes
Notes:
svn path=/head/; revision=366967
Diffstat (limited to 'net/v6eval/files/patch-bin_dhgen_dhgen.cc')
-rw-r--r-- | net/v6eval/files/patch-bin_dhgen_dhgen.cc | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/net/v6eval/files/patch-bin_dhgen_dhgen.cc b/net/v6eval/files/patch-bin_dhgen_dhgen.cc deleted file mode 100644 index 3e715de32e96..000000000000 --- a/net/v6eval/files/patch-bin_dhgen_dhgen.cc +++ /dev/null @@ -1,47 +0,0 @@ ---- bin/dhgen/dhgen.cc.orig 2013-06-16 10:57:08.000000000 +0900 -+++ bin/dhgen/dhgen.cc 2013-06-16 10:59:01.000000000 +0900 -@@ -233,21 +233,21 @@ - } - - #ifdef TAHI -- printf("log:DHGen_Results (length:%i)\n", -+ printf("log:DHGen_Results (length:%zu)\n", - xflag? -- BN_num_bytes(pDH->pub_key) + -- BN_num_bytes(pDH->priv_key): -+ (size_t)(BN_num_bytes(pDH->pub_key) + -+ BN_num_bytes(pDH->priv_key)): - strlen(pPubKey) + strlen(pPrivKey)); - #else // TAHI -- printf("log:DHGen_Results (length:%i)\n", strlen(pPubKey) + strlen(pPrivKey)); -+ printf("log:DHGen_Results (length:%zu)\n", strlen(pPubKey) + strlen(pPrivKey)); - #endif // TAHI - #ifdef TAHI -- printf("log:| Public_Key (length:%i)\n", -+ printf("log:| Public_Key (length:%zu)\n", - xflag? -- BN_num_bytes(pDH->pub_key): -+ (size_t)BN_num_bytes(pDH->pub_key): - strlen(pPubKey)); - #else // TAHI -- printf("log:| Public_Key (length:%i)\n", strlen(pPubKey)); -+ printf("log:| Public_Key (length:%zu)\n", strlen(pPubKey)); - #endif // TAHI - #ifdef TAHI - xflag? xPrintResult(pPubKey): PrintResult(pPubKey); -@@ -255,12 +255,12 @@ - PrintResult(pPubKey); - #endif // TAHI - #ifdef TAHI -- printf("log:| Private_Key (length:%i)\n", -+ printf("log:| Private_Key (length:%zu)\n", - xflag? -- BN_num_bytes(pDH->priv_key): -+ (size_t)BN_num_bytes(pDH->priv_key): - strlen(pPrivKey)); - #else // TAHI -- printf("log:| Private_Key (length:%i)\n", strlen(pPrivKey)); -+ printf("log:| Private_Key (length:%zu)\n", strlen(pPrivKey)); - #endif // TAHI - #ifdef TAHI - xflag? xPrintResult(pPrivKey): PrintResult(pPrivKey); |