diff options
author | Christian Hesse <mail@eworm.de> | 2019-01-15 10:46:54 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2019-01-15 10:46:54 +0100 |
commit | 3ab5726fa531268d78e83b0af1f122d0e0d312c2 (patch) | |
tree | 2fa177f9c44cc59a379bb852120e2706f5067a7c | |
parent | 494fdfd9206d569a1340ce85046b2730d1b9199b (diff) |
update-tunnelbroker: fix parsing id
-rw-r--r-- | update-tunnelbroker | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update-tunnelbroker b/update-tunnelbroker index 55da3aa..0460028 100644 --- a/update-tunnelbroker +++ b/update-tunnelbroker @@ -24,7 +24,7 @@ :local Comment [ :toarray [ / interface 6to4 get $Interface comment ] ]; :local User [ :pick ($Comment->1) 5 99 ]; :local Pass [ :pick ($Comment->2) 5 99 ]; - :local Id [ :pick ($Comment->3) 5 99 ]; + :local Id [ :pick ($Comment->3) 3 99 ]; $CertificateAvailable "Starfield Secure Certificate Authority - G2" "starfield"; :log info ("Local address changed, sending UPDATE to tunnelbroker! New address: " . $PublicAddress); |