diff options
Diffstat (limited to 'net/v6eval/files/patch-bin_dhcomp_dhcomp.cc')
-rw-r--r-- | net/v6eval/files/patch-bin_dhcomp_dhcomp.cc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net/v6eval/files/patch-bin_dhcomp_dhcomp.cc b/net/v6eval/files/patch-bin_dhcomp_dhcomp.cc new file mode 100644 index 000000000000..381f366b98a6 --- /dev/null +++ b/net/v6eval/files/patch-bin_dhcomp_dhcomp.cc @@ -0,0 +1,23 @@ +--- bin/dhcomp/dhcomp.cc.orig 2013-06-16 10:59:39.000000000 +0900 ++++ bin/dhcomp/dhcomp.cc 2013-06-16 11:00:26.000000000 +0900 +@@ -315,14 +315,14 @@ + memcpy(&pSharedKey[iSharedKeyLen - l], pSharedKeyStock, l); + + #ifdef TAHI +- printf("log:DHComp_Results (length:%i)\n", +- xflag? iSharedKeyLen: strlen(pSharedKey)); +- printf("log:| Shared_Key (length:%i)\n", +- xflag? iSharedKeyLen: strlen(pSharedKey)); ++ printf("log:DHComp_Results (length:%zu)\n", ++ xflag? (size_t)iSharedKeyLen: strlen(pSharedKey)); ++ printf("log:| Shared_Key (length:%zu)\n", ++ xflag? (size_t)iSharedKeyLen: strlen(pSharedKey)); + xflag? xPrintResult(pSharedKey): PrintResult(pSharedKey); + #else // TAHI +- printf("log:DHComp_Results (length:%i)\n", strlen(pSharedKey)); +- printf("log:| Shared_Key (length:%i)\n", strlen(pSharedKey)); ++ printf("log:DHComp_Results (length:%zu)\n", strlen(pSharedKey)); ++ printf("log:| Shared_Key (length:%zu)\n", strlen(pSharedKey)); + PrintResult(pSharedKey); + #endif // TAHI + |