This commit is contained in:
orignal 2021-06-25 12:11:33 -04:00
parent 644df5b4ee
commit 86f1bf9fe7
2 changed files with 3 additions and 3 deletions

2
i2pd

@ -1 +1 @@
Subproject commit f22eaa6db51e36d0a064c56907589164752035c5
Subproject commit 3c076654794c619eed228adcac075e9c1dea732f

View file

@ -38,7 +38,7 @@ int main(int argc, char * argv[])
{
if (argc > 1)
{
std::string arg = static_cast<std::string>(argv[1]);
std::string arg (argv[1]);
if (arg == "--usage" || arg == "--help" || arg == "-h")
{
std::cout << "The x25519 keys are used for authentication with an encrypted LeaseSet.\n"
@ -57,7 +57,7 @@ int main(int argc, char * argv[])
BoxKeys newKeys = getKeyPair();
size_t len_out = 50;
const size_t len_out = 50;
char b64Public[len_out] = {0};
char b64Private[len_out] = {0};