Browse Source

Merge pull request #169 from HorseLuke/fix-edge-conf-read-201907

Fix: setOption pass wrong argument in edge node
pull/172/head
Emanuele Faranda 5 years ago
committed by GitHub
parent
commit
be8c2ec9cd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      edge.c

2
edge.c

@ -287,7 +287,7 @@ static int setOption(int optkey, char *optargument, n2n_priv_config_t *ec, n2n_e
}
case 'i': /* supernode registration interval */
conf->register_interval = atoi(optarg);
conf->register_interval = atoi(optargument);
break;
#if defined(N2N_CAN_NAME_IFACE)

Loading…
Cancel
Save