mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 12:33:44 +02:00
fix typos (#1846)
This commit is contained in:
parent
ea0f7dde95
commit
be95b56c10
2 changed files with 2 additions and 2 deletions
|
@ -400,7 +400,7 @@ static int testCrypto()
|
||||||
C25519::agree(p1,p2.pub,buf1,64);
|
C25519::agree(p1,p2.pub,buf1,64);
|
||||||
C25519::agree(p2,p1.pub,buf2,64);
|
C25519::agree(p2,p1.pub,buf2,64);
|
||||||
C25519::agree(p3,p1.pub,buf3,64);
|
C25519::agree(p3,p1.pub,buf3,64);
|
||||||
// p1<>p2 should equal p1<>p2
|
// p1<>p2 should equal p2<>p1
|
||||||
if (memcmp(buf1,buf2,64)) {
|
if (memcmp(buf1,buf2,64)) {
|
||||||
std::cout << "FAIL (1)" << std::endl;
|
std::cout << "FAIL (1)" << std::endl;
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
@ -136,7 +136,7 @@ impl ZeroIDC {
|
||||||
};
|
};
|
||||||
|
|
||||||
println!(
|
println!(
|
||||||
"issuer: {}, client_id: {}, auth_endopint: {}, local_web_port: {}",
|
"issuer: {}, client_id: {}, auth_endpoint: {}, local_web_port: {}",
|
||||||
issuer, client_id, auth_ep, local_web_port
|
issuer, client_id, auth_ep, local_web_port
|
||||||
);
|
);
|
||||||
let iss = IssuerUrl::new(issuer.to_string())?;
|
let iss = IssuerUrl::new(issuer.to_string())?;
|
||||||
|
|
Loading…
Add table
Reference in a new issue