Merge pull request #8 from ksherlock/patch-3

use NULL ip address for ip232 server
This commit is contained in:
FozzTexx 2017-05-08 19:14:58 -07:00 committed by GitHub
commit 57d4244ee1

View File

@ -93,7 +93,7 @@ int ip232_init_conn(modem_config *cfg)
LOG_ENTER();
LOG(LOG_INFO, "Opening ip232 device");
port = atoi(cfg->dce_data.tty);
rc = ip_init_server_conn("", port);
rc = ip_init_server_conn(NULL, port);
if (rc < 0) {
ELOG(LOG_FATAL, "Could not initialize ip232 server socket");
exit(-1);