diff --git a/rigs/dummy/netrotctl.c b/rigs/dummy/netrotctl.c index 38b645543..16b6c22e6 100644 --- a/rigs/dummy/netrotctl.c +++ b/rigs/dummy/netrotctl.c @@ -144,6 +144,16 @@ static int netrotctl_open(ROT *rot) } rs->max_el = rot->caps->max_el = atof(buf); + + ret = read_string(&rot->state.rotport, (unsigned char *) buf, BUF_MAX, "\n", + sizeof("\n"), 0, 1); + + if (ret <= 0) + { + return (ret < 0) ? ret : -RIG_EPROTO; + } + + rs->south_zero = atoi(buf); return RIG_OK; }